diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-08-07 12:45:27 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-08-07 12:45:27 -0600 |
commit | 054631fe16ae43e029733314d2cc2b9070b33823 (patch) | |
tree | 0e67eb61e5e700a292b96d168944a91c2e65c974 /dimension | |
parent | f4eb7c9c8edbbb7692d8beb21e04cc4288e968c6 (diff) | |
download | dimension-054631fe16ae43e029733314d2cc2b9070b33823.tar.xz |
Clean up lights in complex.dmnsn even more.
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( |