Example #1
0
 def turtlewrite(self, text, move=False):
     if isinstance(text, list):
         text = ' '.join(map(str, text))
     else:
         text = str(text)
     add_command(self.pen.write, text, move)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #2
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #3
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #4
0
 def backward(self, v):
     add_command(self.pen.backward,v)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #5
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #6
0
 def home(self):
     add_command(self.pen.setheading, 0)
     add_command(self.pen.goto, 0, 0)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #7
0
 def setx(self, x):
     add_command(self.pen.setx,x)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)