#ifndef __POLYGON_H #define __POLYGON_H class SPolygon; template class SList { public: T *elem; int n; int elemsAllocated; void Add(T *t) { if(n >= elemsAllocated) { elemsAllocated = (elemsAllocated + 32)*2; elem = (T *)MemRealloc(elem, elemsAllocated*sizeof(elem[0])); } elem[n++] = *t; } void ClearTags(void) { int i; for(i = 0; i < n; i++) { elem[i].tag = 0; } } void Clear(void) { if(elem) MemFree(elem); elem = NULL; n = elemsAllocated = 0; } }; class SEdge { public: int tag; Vector a, b; }; class SEdgeList { public: SList l; bool AssemblePolygon(SPolygon *dest, SEdge *errorAt); }; class SPoint { public: int tag; Vector p; }; class SContour { public: SList l; }; class SPolygon { public: SList l; void AddEmptyContour(void); void AddPoint(Vector p); void Clear(void); }; class SPolyhedron { SList l; public: }; #endif