diff options
Diffstat (limited to 'dimension')
-rw-r--r-- | dimension/tests/complex.dmnsn | 4 |
1 files changed, 2 insertions, 2 deletions
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( |