diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-06-17 09:16:20 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-06-17 09:16:20 -0600 |
commit | c8667ce6ae94929e9bc06c9af51b6589bc528946 (patch) | |
tree | b325c25f6192f51159e24ace80f2e9e5ce00b99f /dimension/parse.h | |
parent | 91cc57a4a12997a72c2ec643f3560ad998daa87b (diff) | |
download | dimension-c8667ce6ae94929e9bc06c9af51b6589bc528946.tar.xz |
Fully implement POV-Ray transformations.
Diffstat (limited to 'dimension/parse.h')
-rw-r--r-- | dimension/parse.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dimension/parse.h b/dimension/parse.h index b4bd8fe..fd78665 100644 --- a/dimension/parse.h +++ b/dimension/parse.h @@ -77,9 +77,12 @@ typedef enum { DMNSN_AST_INTERIOR, DMNSN_AST_IOR, + DMNSN_AST_TRANSFORMATION, DMNSN_AST_ROTATION, DMNSN_AST_SCALE, DMNSN_AST_TRANSLATION, + DMNSN_AST_MATRIX, + DMNSN_AST_INVERSE, DMNSN_AST_FLOAT, DMNSN_AST_INTEGER, |