diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-08-15 00:22:47 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-08-15 00:22:47 -0600 |
commit | e0efc5ef27039f03be4783d593508ea7480aa4d0 (patch) | |
tree | ec3f69ad6d79ce1378fa6cdd7545d6b6901c2e3c /dimension/lexer.l | |
parent | 8fed0cea862554f1d8316c2244e6d94f691abad6 (diff) | |
download | dimension-e0efc5ef27039f03be4783d593508ea7480aa4d0.tar.xz |
Add cylinder support to dimension.
Diffstat (limited to 'dimension/lexer.l')
-rw-r--r-- | dimension/lexer.l | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dimension/lexer.l b/dimension/lexer.l index ea98c07..190acb0 100644 --- a/dimension/lexer.l +++ b/dimension/lexer.l @@ -186,6 +186,7 @@ unsigned long wchar; "colour" RETURN_TOKEN(DMNSN_T_COLOR); "cos" RETURN_TOKEN(DMNSN_T_COS); "cosh" RETURN_TOKEN(DMNSN_T_COSH); +"cylinder" RETURN_TOKEN(DMNSN_T_CYLINDER); "degrees" RETURN_TOKEN(DMNSN_T_DEGREES); "difference" RETURN_TOKEN(DMNSN_T_DIFFERENCE); "diffuse" RETURN_TOKEN(DMNSN_T_DIFFUSE); @@ -224,6 +225,7 @@ unsigned long wchar; "object" RETURN_TOKEN(DMNSN_T_OBJECT); "off" RETURN_TOKEN(DMNSN_T_OFF); "on" RETURN_TOKEN(DMNSN_T_ON); +"open" RETURN_TOKEN(DMNSN_T_OPEN); "perspective" RETURN_TOKEN(DMNSN_T_PERSPECTIVE); "phong" RETURN_TOKEN(DMNSN_T_PHONG); "phong_size" RETURN_TOKEN(DMNSN_T_PHONG_SIZE); |