diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-11-26 17:21:37 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-11-26 18:58:42 -0500 |
commit | b437554ae933f99a59054e6589177ca8380a3a97 (patch) | |
tree | bbf5708813e3892b23dad4886c0f6228ab5c3e58 /tests/dimension/demo.pov | |
parent | c0a0ee5ae71b97b1400efddb4c374e1d13701fa3 (diff) | |
download | dimension-b437554ae933f99a59054e6589177ca8380a3a97.tar.xz |
Add cameras to grammar.
Diffstat (limited to 'tests/dimension/demo.pov')
-rw-r--r-- | tests/dimension/demo.pov | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/dimension/demo.pov b/tests/dimension/demo.pov index c6f99fb..67113cf 100644 --- a/tests/dimension/demo.pov +++ b/tests/dimension/demo.pov @@ -19,6 +19,14 @@ // Render demo scene +camera { + perspective + location <0, 0, -4> + right <768/480, 0, 0> + rotate <0, 53, 0> + look_at <0, 0, 0> +} + background { color rgbf <0, 0, 0.1, 0.1> } |