From e0efc5ef27039f03be4783d593508ea7480aa4d0 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 15 Aug 2010 00:22:47 -0600 Subject: Add cylinder support to dimension. --- dimension/lexer.l | 2 ++ 1 file changed, 2 insertions(+) (limited to 'dimension/lexer.l') 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); -- cgit v1.2.3