diff options
author | Karl Berry <karl@freefriends.org> | 2009-10-02 20:54:28 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-10-02 20:54:28 +0000 |
commit | 42f3026da4fb6ba350f688a92a783b868725c780 (patch) | |
tree | 594d732a4a023cb8aa54c8bc800a891de9d272c9 /Build/source/utils/asymptote/drawelement.h | |
parent | d48f0a35d1c944862c741b864aba469b2daf41f0 (diff) |
asy 1.88
git-svn-id: svn://tug.org/texlive/trunk@15588 c570f23f-e606-0410-a88d-b1316a301751
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; } |