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)
Example #2
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)
Example #3
0
 def setx(self, x):
     t = self.pen
     add_command(t.goto, x, t.position()[1])
     add_command(get_canvas().update)
Example #4
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
Example #5
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 #6
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
Example #7
0
 def forward(self, v):
     add_command(self.pen.forward, v)
     add_command(get_canvas().update)
Example #8
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
Example #9
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
Example #10
0
 def home(self):
     add_command(self.pen.setheading, 0)
     add_command(self.pen.goto, 0, 0)
     add_command(get_canvas().update)
Example #11
0
 def sety(self, y):
     t = self.pen
     add_command(t.goto, t.position()[0], y)
     add_command(get_canvas().update)
Example #12
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #13
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #14
0
 def backward(self, v):
     add_command(self.pen.backward,v)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #15
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Example #16
0
 def sety(self, y):
     t = self.pen
     add_command(t.goto, t.position()[0], y)
     add_command(get_canvas().update)
Example #17
0
 def home(self):
     add_command(self.pen.setheading, 0)
     add_command(self.pen.goto, 0, 0)
     add_command(get_canvas().update)
Example #18
0
 def __init__(self):
     self.pen = turtle.RawPen(get_canvas())
     self.pen.degrees()
     self._all_turtles.append(weakref.ref(self))
     self._count = self._turtle_count
     self.__class__._turtle_count += 1
Example #19
0
 def __init__(self):
     self.pen = turtle.RawPen(get_canvas())
     self.pen.degrees()
     self._all_turtles.append(weakref.ref(self))
     self._count = self._turtle_count
     self.__class__._turtle_count += 1
Example #20
0
 def forward(self, v):
     add_command(self.pen.forward, v)
     add_command(get_canvas().update)
Example #21
0
 def backward(self, v):
     add_command(self.pen.backward, v).add_command(get_canvas().update)
Example #22
0
 def backward(self, v):
     add_command(self.pen.backward, v).add_command(get_canvas().update)
Example #23
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
Example #24
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
Example #25
0
 def setx(self, x):
     t = self.pen
     add_command(t.goto, x, t.position()[1])
     add_command(get_canvas().update)
Example #26
0
 def setx(self, x):
     add_command(self.pen.setx,x)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)