X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fstructs.h;fp=src%2Fstructs.h;h=8250a002c8dab39c8ff820b210e70ea60613bac0;hb=3c890e51a9763ffcee49e15753453a7da248272b;hp=47d8d85a50795519943efebfea49879502c303e2;hpb=41644f6a841b45cb6f1f7a96c93fd550f67a7974;p=architektonas diff --git a/src/structs.h b/src/structs.h index 47d8d85..8250a00 100644 --- a/src/structs.h +++ b/src/structs.h @@ -125,6 +125,7 @@ struct Text { measured(false), s(str) { p[0] = pt1; angle[0] = 0; } }; +//prolly don't need this, as this just a special case of a polyline... struct Polygon { OBJECT_COMMON; int sides; @@ -134,13 +135,14 @@ struct Polygon { struct Polyline { OBJECT_COMMON; - VPVector objects; - bool closed; + VPVector points; +//need this? could just repeat the endpoint as well... +// bool closed; Object * clicked; Polyline(): type(OTPolyline), id(Global::objectID++), selected(false), hovered(false), hitObject(false), clicked(NULL) {} - void Add(void * obj) { objects.push_back(obj); } - void Add(VPVector objs) { objects.insert(objects.end(), objs.begin(), objs.end()); } + void Add(void * obj) { points.push_back(obj); } + void Add(VPVector objs) { points.insert(points.end(), objs.begin(), objs.end()); } }; struct Spline {