From c04e1953131c312a9666d1b5b1ba11c62491c046 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 17 Jun 2011 13:57:11 -0600 Subject: Use a default diffuse amount of 0.7. POV-Ray's default of 0.6 was added to a 0.1 ambient. But when you do the sRGB correctly, 0.6 + 0.1 ~= 0.6. --- libdimension-python/tests/demo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libdimension-python/tests') diff --git a/libdimension-python/tests/demo.py b/libdimension-python/tests/demo.py index 700fd8b..7a9a361 100755 --- a/libdimension-python/tests/demo.py +++ b/libdimension-python/tests/demo.py @@ -153,7 +153,7 @@ scene = Scene(canvas = canvas, objects = objects, lights = lights, camera = camera) -scene.default_texture = Texture(finish = Ambient(0.1) + Diffuse(0.6)) +scene.default_texture = Texture(finish = Ambient(0.1) + Diffuse(0.7)) scene.background = Clear scene.sky_sphere = sky_sphere scene.adc_bailout = 1/255 -- cgit v1.2.3