diff --git a/sugar/chat/sketchpad/Sketch.py b/sugar/chat/sketchpad/Sketch.py index 4dcfab36..0ddfb3c0 100644 --- a/sugar/chat/sketchpad/Sketch.py +++ b/sugar/chat/sketchpad/Sketch.py @@ -24,6 +24,9 @@ class Sketch: def add_point(self, x, y): self._points.append((x, y)) + + def get_points(self): + return self._points def draw(self, ctx): start = True