diff options
author | joye <joye> | 2014-03-20 18:57:27 (GMT) |
---|---|---|
committer | joye <joye> | 2014-03-20 18:57:27 (GMT) |
commit | 246b47f0b90e9db7160cc7a266cdd81697bab949 (patch) | |
tree | 46905a58793fa1f90b428bbfd5ecf7005450cc00 /src/bltGrMarker.h | |
parent | 728d5bf2094ca2919b3ee586912558cd78267298 (diff) | |
download | blt-246b47f0b90e9db7160cc7a266cdd81697bab949.zip blt-246b47f0b90e9db7160cc7a266cdd81697bab949.tar.gz blt-246b47f0b90e9db7160cc7a266cdd81697bab949.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltGrMarker.h')
-rw-r--r-- | src/bltGrMarker.h | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/bltGrMarker.h b/src/bltGrMarker.h index 8fc2f02..e823153 100644 --- a/src/bltGrMarker.h +++ b/src/bltGrMarker.h @@ -57,6 +57,17 @@ typedef struct { int num; } Coords; +typedef struct { + Coords* worldPts; + const char* elemName; + Axis2d axes; + int hide; + int state; + int drawUnder; + int xOffset; + int yOffset; +} MarkerOptions; + struct _Marker { GraphObj obj; MarkerClass *classPtr; @@ -66,14 +77,7 @@ struct _Marker { int clipped; unsigned int flags; - Coords* worldPts; - const char* elemName; - Axis2d axes; - int hide; - int state; - int drawUnder; - int xOffset; - int yOffset; + MarkerOptions* ops; }; Point2d Blt_MapPoint(Point2d *pointPtr, Axis2d *axesPtr); |