X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fstructs.h;h=7fe1f09e96eca0c5d018c315a15d5498c598c676;hb=3f1e5ba1d42ab40edf75cf05df16b0e25d0821cb;hp=54e2f51bffb088afd2476e1e67a46363b8216c78;hpb=6533354910fbf76d9747deeae02b2e910ef9aa48;p=architektonas diff --git a/src/structs.h b/src/structs.h index 54e2f51..7fe1f09 100644 --- a/src/structs.h +++ b/src/structs.h @@ -73,7 +73,8 @@ struct Dimension { OBJECT_COMMON; int subtype; double offset; - Point lp[2]; // Line point, the actual dimension line + Point lp[2]; // Line point, the actual dimension line + Object * obj[2]; // Pointer to attached objects (circle, lines for angle) Dimension(): type(OTDimension), id(Global::objectID++) {} Dimension(Vector pt1, Vector pt2, DimensionType dt = DTLinear, float th = 1.0, uint32_t c = 0x0000FF, int l = LSSolid):