diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-12-21 00:36:12 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-12-21 02:32:06 -0500 |
commit | 494079ee46d67ae7ef6504734f7400b543c6d848 (patch) | |
tree | 9f4ad236fe10ef99b422913edc98d85cf83f99aa /tests/dimension/directives.pov | |
parent | 0eb3d602df451f882e107ebed47b3bce9a1e68dc (diff) | |
download | dimension-494079ee46d67ae7ef6504734f7400b543c6d848.tar.xz |
Support #declare, #local, and #undef.
Diffstat (limited to 'tests/dimension/directives.pov')
-rw-r--r-- | tests/dimension/directives.pov | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/dimension/directives.pov b/tests/dimension/directives.pov index 6907450..6b0e72c 100644 --- a/tests/dimension/directives.pov +++ b/tests/dimension/directives.pov @@ -19,6 +19,16 @@ // Test the language directives -#include "punctuation.pov" +#declare Center = 0; +#declare R = 1; +#local Color = rgb <1, 0, 1>; -#declare id +#declare Unused = -1; +#undef Unused + +sphere { + Center, R + pigment { + color Color + } +} |