summaryrefslogtreecommitdiffstats
path: root/libdimension-python/tests
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2011-08-21 13:24:13 -0600
committerTavian Barnes <tavianator@gmail.com>2011-08-21 13:24:13 -0600
commit942fd9ff8e267b361de580a95fa247e486120891 (patch)
tree683835731d05db901d98d10ba0023bb1ef3fb285 /libdimension-python/tests
parent6b1fcde7af64ca81079dffe1d62096228693b5d6 (diff)
downloaddimension-942fd9ff8e267b361de580a95fa247e486120891.tar.xz
Replace sky_spheres with a single background pigment.
Diffstat (limited to 'libdimension-python/tests')
-rwxr-xr-xlibdimension-python/tests/demo.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/libdimension-python/tests/demo.py b/libdimension-python/tests/demo.py
index 307aafc..fe3518c 100755
--- a/libdimension-python/tests/demo.py
+++ b/libdimension-python/tests/demo.py
@@ -49,8 +49,7 @@ scene = Scene(canvas = canvas,
lights = lights,
camera = camera)
scene.default_texture = Texture(finish = Ambient(0.1) + Diffuse(0.7))
-scene.background = Clear
-scene.sky_sphere = sky_sphere
+scene.background = background
scene.adc_bailout = 1/255
scene.recursion_limit = 5
scene.raytrace()