diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-04-07 01:17:28 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-04-07 01:17:28 -0400 |
commit | 7d6663eeb68bf9d0a3dff86128827c0c1d85df69 (patch) | |
tree | 7e9c5775d78e0868bf315eeadcfcadacec784707 /dimension/parse.h | |
parent | 2a6bb6c6e0c7d5019e484ab4393941b8801d63ea (diff) | |
download | dimension-7d6663eeb68bf9d0a3dff86128827c0c1d85df69.tar.xz |
Implement CSG in front-end.
Diffstat (limited to 'dimension/parse.h')
-rw-r--r-- | dimension/parse.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dimension/parse.h b/dimension/parse.h index a34e546..64fbf25 100644 --- a/dimension/parse.h +++ b/dimension/parse.h @@ -47,8 +47,12 @@ typedef enum { DMNSN_AST_DIRECTION, DMNSN_AST_BOX, + DMNSN_AST_DIFFERENCE, + DMNSN_AST_INTERSECTION, DMNSN_AST_LIGHT_SOURCE, + DMNSN_AST_MERGE, DMNSN_AST_SPHERE, + DMNSN_AST_UNION, DMNSN_AST_OBJECT_MODIFIERS, |