diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-01-14 01:00:09 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-01-14 01:00:09 -0500 |
commit | cbdaf9ff41649174b72b0453b8a399f6abb11e8f (patch) | |
tree | feecf5e43b7b4487b883514b2744fe17edf1f903 /tests/dimension/demo.pov | |
parent | e261cff9bf8f4f42a769fecc5414d42b582dc9f7 (diff) | |
download | dimension-cbdaf9ff41649174b72b0453b8a399f6abb11e8f.tar.xz |
Support reflective finishes.
Diffstat (limited to 'tests/dimension/demo.pov')
-rw-r--r-- | tests/dimension/demo.pov | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/dimension/demo.pov b/tests/dimension/demo.pov index c59148a..1e1afff 100644 --- a/tests/dimension/demo.pov +++ b/tests/dimension/demo.pov @@ -38,14 +38,22 @@ light_source { box { <-1, -1, -1>, <1, 1, 1> + rotate <45, 0, 0> - pigment { - color rgbft <0, 0, 1, 0.25, 0.25> + + texture { + pigment { + color rgbft <0, 0, 1, 0.25, 0.25> + } + finish { + reflection { 1.0 } + } } } sphere { <0, 0, 0>, 1.25 + texture { pigment { color rgb <0, 1, 0> |