diff options
Diffstat (limited to 'Build/source/utils/asymptote/drawelement.h')
-rw-r--r-- | Build/source/utils/asymptote/drawelement.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/utils/asymptote/drawelement.h b/Build/source/utils/asymptote/drawelement.h index e704912ac21..bdc7d2b020e 100644 --- a/Build/source/utils/asymptote/drawelement.h +++ b/Build/source/utils/asymptote/drawelement.h @@ -21,6 +21,8 @@ namespace camp { +enum Entity {LINE=0,CURVE,SURFACE,BILLBOARD_SURFACE,nENTITY}; + class box { pair p[4]; public: @@ -132,7 +134,9 @@ public: } // Output to a PRC file - virtual bool write(prcfile *) { + // The array origin contains the points about which to rotate billboard labels + virtual bool write(prcfile *out, unsigned int *count, vm::array *index, + vm::array *origin) { return false; } |