summaryrefslogtreecommitdiffstats
path: root/tests/dimension/arithexp.pov
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2009-11-25 20:27:05 -0500
committerTavian Barnes <tavianator@gmail.com>2009-11-25 20:27:05 -0500
commit02c0213ab823a0c838d295017298cf8cd3493342 (patch)
tree50acf3e6283d070139a34a78741ee8f87ce774a3 /tests/dimension/arithexp.pov
parent1c899d86c393faf021298d08471f0dd48d5306d7 (diff)
downloaddimension-02c0213ab823a0c838d295017298cf8cd3493342.tar.xz
Add vector promotion.
Diffstat (limited to 'tests/dimension/arithexp.pov')
-rw-r--r--tests/dimension/arithexp.pov4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dimension/arithexp.pov b/tests/dimension/arithexp.pov
index dd055a4..2cdedb6 100644
--- a/tests/dimension/arithexp.pov
+++ b/tests/dimension/arithexp.pov
@@ -17,9 +17,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/
-// Render demo scene
+// Test arithmetic expression handling
sphere {
- <<2.0 - 1.0, 3.0, 4.0>.x, (1.0 + 2)*2 - 5, 1.0 + 2*2 - 4> - -<0, 0, 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
}