Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/chat
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/chat')
-rw-r--r--sugar/chat/sketchpad/Sketch.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/sugar/chat/sketchpad/Sketch.py b/sugar/chat/sketchpad/Sketch.py
index 4dcfab3..0ddfb3c 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