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. --- dimension/dimension.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dimension') diff --git a/dimension/dimension.in b/dimension/dimension.in index b5736cf..90abdb7 100644 --- a/dimension/dimension.in +++ b/dimension/dimension.in @@ -105,7 +105,7 @@ die_on_warnings(_args.strict) objects = [] lights = [] camera = PerspectiveCamera() -default_texture = Texture(finish = Ambient(0.1) + Diffuse(0.6)) +default_texture = Texture(finish = Ambient(0.1) + Diffuse(0.7)) default_interior = Interior() background = Black sky_sphere = None -- cgit v1.2.3