diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-11-19 20:30:14 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-11-19 20:31:06 -0500 |
commit | d47af986a7832add1c149235f44fa8f57b56e6d8 (patch) | |
tree | 40fbd4a5e84afa188c2f23a7727d3d9d2acb6840 /tests/dimension/demo.pov | |
parent | 6137aed0179476eaa626660885f01ea3f04f988a (diff) | |
download | dimension-d47af986a7832add1c149235f44fa8f57b56e6d8.tar.xz |
Implement sky spheres.
Diffstat (limited to 'tests/dimension/demo.pov')
-rw-r--r-- | tests/dimension/demo.pov | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/dimension/demo.pov b/tests/dimension/demo.pov index 0740ecb..8088f45 100644 --- a/tests/dimension/demo.pov +++ b/tests/dimension/demo.pov @@ -29,7 +29,17 @@ camera { } background { - color rgbf <0, 0.1, 0.2, 0.1> + color transmit 1 +} + +sky_sphere { + pigment { + gradient y + color_map { + [0.0 color rgb <1, 0.5, 0>] + [0.35 color rgbf <0, 0.1, 0.2, 0.1>] + } + } } light_source { |