class SubShapeHitList
#include <shape.h>
Public Member Functions |
|
SubShapeHitList () | |
CoreExport | ~SubShapeHitList () |
ShapeSubHitRec * | First () |
CoreExport void | AddHit (DWORD dist, BezierShape *shape, int poly, int index) |
int | Count () |
SubShapeHitList | ( | ) | [inline] |
{ first = NULL; }
CoreExport ~SubShapeHitList | ( | ) |
ShapeSubHitRec* First | ( | ) | [inline] |
CoreExport void AddHit | ( | DWORD | dist, |
BezierShape * | shape, | ||
int | poly, | ||
int | index | ||
) |
int Count | ( | ) | [inline] |
{ int count = 0; ShapeSubHitRec *ptr = first; while(ptr) { count++; ptr = ptr->Next(); } return count; }