add 'shapes' package to collect shape classes

This commit is contained in:
Josh Holtrop 2011-04-03 12:14:16 -04:00
parent 72c1865cf6
commit 2094ab8df8
2 changed files with 4 additions and 2 deletions

View File

@ -5,8 +5,7 @@ import gtk.gtkgl
from OpenGL.GL import * from OpenGL.GL import *
from Line import Line from shapes import *
from Circle import Circle
class SketchWidget: class SketchWidget:
def __init__(self, sketch): def __init__(self, sketch):

3
shapes.py Normal file
View File

@ -0,0 +1,3 @@
from Line import *
from Circle import *