diff -r 76b254ce92cf -r 6493fb65f0b1 demos/bunny.py --- a/demos/bunny.py Wed Mar 19 17:18:59 2008 +0100 +++ b/demos/bunny.py Wed Mar 26 00:52:27 2008 +0100 @@ -18,20 +18,20 @@ LoadStanfordPlyFile(rt, "../models/bunny/bun_zipper.ply", mat, smooth=True, scale=(-29.0, 29.0, 29.0), trans=(-1,-2.5,-3)) -mat0 = Material(colour=(0.1, 0.2, 1.0)) +mat0 = Material(colour=(0.1, 0.2, 0.6)) box1 = Box(L=(-20.0, -1.7, -20.0), H=(20.0, -1.5, 20.0), material=mat0) rt.addshape(box1) -mat1 = Material(colour=(0.5, 0.2, 0.1)) +mat1 = Material(colour=(0.5, 0.5, 0.2)) mat1.setReflectivity(0.0) box2 = Box(L=(-20.0, -20.0, -10.0), H=(20.0, 20.0, -12.0), material=mat1) rt.addshape(box2) -light = Light(position=(-5.0, 3.0, 10.0), colour=(0.9, 0.3, 0.6)) +light = Light(position=(-5.0, 3.0, 10.0), colour=(0.8, 0.5, 0.6)) #light.castshadows(0) rt.addlight(light) -light2 = Light(position=(4.0, 1.0, 10.0), colour=(0.2, 0.9, 0.5)) +light2 = Light(position=(4.0, 1.0, 10.0), colour=(0.5, 0.55, 0.7)) #light2.castshadows(0) rt.addlight(light2)