Exemplo n.º 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)
Exemplo n.º 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)
Exemplo n.º 3
0
 def setx(self, x):
     t = self.pen
     add_command(t.goto, x, t.position()[1])
     add_command(get_canvas().update)
Exemplo n.º 4
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
Exemplo n.º 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)
Exemplo n.º 6
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
Exemplo n.º 7
0
 def forward(self, v):
     add_command(self.pen.forward, v)
     add_command(get_canvas().update)
Exemplo n.º 8
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
Exemplo n.º 9
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
Exemplo n.º 10
0
 def home(self):
     add_command(self.pen.setheading, 0)
     add_command(self.pen.goto, 0, 0)
     add_command(get_canvas().update)
Exemplo n.º 11
0
 def sety(self, y):
     t = self.pen
     add_command(t.goto, t.position()[0], y)
     add_command(get_canvas().update)
Exemplo n.º 12
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Exemplo n.º 13
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Exemplo n.º 14
0
 def backward(self, v):
     add_command(self.pen.backward,v)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Exemplo n.º 15
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Exemplo n.º 16
0
 def sety(self, y):
     t = self.pen
     add_command(t.goto, t.position()[0], y)
     add_command(get_canvas().update)
Exemplo n.º 17
0
 def home(self):
     add_command(self.pen.setheading, 0)
     add_command(self.pen.goto, 0, 0)
     add_command(get_canvas().update)
Exemplo n.º 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
Exemplo n.º 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
Exemplo n.º 20
0
 def forward(self, v):
     add_command(self.pen.forward, v)
     add_command(get_canvas().update)
Exemplo n.º 21
0
 def backward(self, v):
     add_command(self.pen.backward, v).add_command(get_canvas().update)
Exemplo n.º 22
0
 def backward(self, v):
     add_command(self.pen.backward, v).add_command(get_canvas().update)
Exemplo n.º 23
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
Exemplo n.º 24
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
Exemplo n.º 25
0
 def setx(self, x):
     t = self.pen
     add_command(t.goto, x, t.position()[1])
     add_command(get_canvas().update)
Exemplo n.º 26
0
 def setx(self, x):
     add_command(self.pen.setx,x)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)