summaryrefslogtreecommitdiff
path: root/host/simu/inter/test/test_drawable.py
diff options
context:
space:
mode:
authorNicolas Schodet2012-06-09 21:04:11 +0200
committerNicolas Schodet2012-06-09 21:04:11 +0200
commitac6fb3e4d815ae7bc08abc0219ec004a2960292a (patch)
tree4e7bd9784e802139d44a8f30e656b4205b079e0a /host/simu/inter/test/test_drawable.py
parent9184fb957a6d9bf39c5aea315528475838abc82b (diff)
host/simu/inter: add text drawing primitive
Diffstat (limited to 'host/simu/inter/test/test_drawable.py')
-rw-r--r--host/simu/inter/test/test_drawable.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/host/simu/inter/test/test_drawable.py b/host/simu/inter/test/test_drawable.py
index 9aa56ef1..3795170a 100644
--- a/host/simu/inter/test/test_drawable.py
+++ b/host/simu/inter/test/test_drawable.py
@@ -36,6 +36,7 @@ class Test (Drawable):
self.draw_circle ((40, -40), 10)
self.draw_oval ((40, -40), 10, 5)
self.draw_arc ((-40, 0), 20, start = pi / 4, extent = pi / 2)
+ self.draw_text ((10, 0), text = "hello world")
class App (DrawableCanvas):