diff options
author | Anthony LaTorre <tlatorre9@gmail.com> | 2011-08-17 11:54:41 -0400 |
---|---|---|
committer | Anthony LaTorre <tlatorre9@gmail.com> | 2011-08-17 11:54:41 -0400 |
commit | 11210ce25a543875eb51cff8efc06e7f02984214 (patch) | |
tree | c9f3dfc8a2540a7a23b3fb8b809791641a7082b1 /scenes | |
parent | d036821cd62c5b2c913999feebd5bbe4549c16fa (diff) | |
download | chroma-11210ce25a543875eb51cff8efc06e7f02984214.tar.gz chroma-11210ce25a543875eb51cff8efc06e7f02984214.tar.bz2 chroma-11210ce25a543875eb51cff8efc06e7f02984214.zip |
move useful bits from view.py into camera.py and get rid of view.py
Diffstat (limited to 'scenes')
-rw-r--r-- | scenes/checkerboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/checkerboard.py b/scenes/checkerboard.py index 4ad1120..7e4f755 100644 --- a/scenes/checkerboard.py +++ b/scenes/checkerboard.py @@ -3,7 +3,7 @@ from chroma.itertoolset import * from chroma.geometry import Mesh, Solid, Geometry from chroma.optics import * from chroma.make import sphere -from chroma.view import buildable +from chroma.camera import buildable @buildable('checkerboard_scene') def build_checkerboard_scene(checkers_per_side=10, squares_per_checker=50): |