From 054631fe16ae43e029733314d2cc2b9070b33823 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Sun, 7 Aug 2011 12:45:27 -0600 Subject: Clean up lights in complex.dmnsn even more. --- dimension/tests/complex.dmnsn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dimension') diff --git a/dimension/tests/complex.dmnsn b/dimension/tests/complex.dmnsn index 09499b3..a6d7889 100644 --- a/dimension/tests/complex.dmnsn +++ b/dimension/tests/complex.dmnsn @@ -25,8 +25,8 @@ background = 0.5*Color(0.73, 0.90, 0.97) def make_light(x, y, z): return PointLight(location = (x, y, z), color = 1/4*White) -for x in range(-3, 4, 2): - for y in range(0, 6, 5): +for x in [-3, -1, 1, 3]: + for y in [0, 5]: lights.append(make_light(x, y, -5)) objects.append( -- cgit v1.2.3