diff --git a/SketchWidget.py b/SketchWidget.py index ecf307f..08c7635 100644 --- a/SketchWidget.py +++ b/SketchWidget.py @@ -5,8 +5,7 @@ import gtk.gtkgl from OpenGL.GL import * -from Line import Line -from Circle import Circle +from shapes import * class SketchWidget: def __init__(self, sketch): diff --git a/shapes.py b/shapes.py new file mode 100644 index 0000000..3fb2a7c --- /dev/null +++ b/shapes.py @@ -0,0 +1,3 @@ + +from Line import * +from Circle import *