summaryrefslogtreecommitdiffstats
path: root/tests/dimension/arithexp.pov
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2009-11-25 20:14:01 -0500
committerTavian Barnes <tavianator@gmail.com>2009-11-25 20:14:01 -0500
commit1c899d86c393faf021298d08471f0dd48d5306d7 (patch)
treeb660c39c3afcb44c2bc236cbea10aacbfecb00b4 /tests/dimension/arithexp.pov
parent48ded3e40b77d2c072429854e2ebf81744c3e552 (diff)
downloaddimension-1c899d86c393faf021298d08471f0dd48d5306d7.tar.xz
Fix binary vector arithmetic expressions.
Diffstat (limited to 'tests/dimension/arithexp.pov')
-rw-r--r--tests/dimension/arithexp.pov3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/dimension/arithexp.pov b/tests/dimension/arithexp.pov
index 5d0e8fb..dd055a4 100644
--- a/tests/dimension/arithexp.pov
+++ b/tests/dimension/arithexp.pov
@@ -20,5 +20,6 @@
// Render demo scene
sphere {
- <<2.0 - 1.0, 3.0, 4.0>.x, (1.0 + 2)*2 - 5, 1.0 + 2*2 - 4> - -<0, 0, 1>, 2.25 - 1*2
+ <<2.0 - 1.0, 3.0, 4.0>.x, (1.0 + 2)*2 - 5, 1.0 + 2*2 - 4> - -<0, 0, 1>,
+ 2.25 - 1*2
}