Ejemplo 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)
Ejemplo 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)
Ejemplo n.º 3
0
 def backward(self, v):
     add_command(self.pen.backward, v).add_command(get_canvas().update)
Ejemplo n.º 4
0
 def setheading(self, v):
     add_command(self.pen.setheading, v)
Ejemplo n.º 5
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
Ejemplo n.º 6
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
Ejemplo n.º 7
0
 def setx(self, x):
     t = self.pen
     add_command(t.goto, x, t.position()[1])
     add_command(get_canvas().update)
Ejemplo n.º 8
0
 def pencolor(self, *args):
     add_command(self.pen.color, *args)
Ejemplo n.º 9
0
 def delay(self, x):
     add_command(self.pen.delay,x)
Ejemplo n.º 10
0
 def setheading(self, v):
     add_command(self.pen.setheading, v)
Ejemplo n.º 11
0
 def home(self):
     add_command(self.pen.setheading, 0)
     add_command(self.pen.goto, 0, 0)
     add_command(get_canvas().update)
Ejemplo 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)
Ejemplo n.º 13
0
 def sety(self, y):
     t = self.pen
     add_command(t.goto, t.position()[0], y)
     add_command(get_canvas().update)
Ejemplo n.º 14
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Ejemplo n.º 15
0
 def backward(self, v):
     add_command(self.pen.backward,v)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Ejemplo n.º 16
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)
Ejemplo n.º 17
0
 def right(self, v):
     add_command(self.pen.right, v)
Ejemplo n.º 18
0
 def clear(self):
     self.home()
     add_command(self.pen.clear)
     add_command(get_canvas().update)
Ejemplo n.º 19
0
 def pendown(self):
     add_command(self.pen.down)
Ejemplo n.º 20
0
 def forward(self, v):
     add_command(self.pen.forward, v)
     add_command(get_canvas().update)
Ejemplo n.º 21
0
 def showturtle(self):
     add_command(self.pen.tracer, 1)
Ejemplo n.º 22
0
 def backward(self, v):
     add_command(self.pen.backward, v).add_command(get_canvas().update)
Ejemplo n.º 23
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)
Ejemplo n.º 24
0
 def left(self, v):
     add_command(self.pen.left, v)
Ejemplo n.º 25
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
Ejemplo n.º 26
0
 def right(self, v):
     add_command(self.pen.right, v)
Ejemplo n.º 27
0
 def sety(self, y):
     t = self.pen
     add_command(t.goto, t.position()[0], y)
     add_command(get_canvas().update)
Ejemplo n.º 28
0
 def penup(self):
     add_command(self.pen.up)
Ejemplo n.º 29
0
 def home(self):
     add_command(self.pen.setheading, 0)
     add_command(self.pen.goto, 0, 0)
     add_command(get_canvas().update)
Ejemplo n.º 30
0
 def pendown(self):
     add_command(self.pen.down)
Ejemplo n.º 31
0
 def forward(self, v):
     add_command(self.pen.forward, v)
     add_command(get_canvas().update)
Ejemplo n.º 32
0
 def penwidth(self, v):
     add_command(self.pen.width, v)
Ejemplo n.º 33
0
 def left(self, v):
     add_command(self.pen.left, v)
Ejemplo n.º 34
0
 def pencolor(self, *args):
     add_command(self.pen.color, *args)
Ejemplo n.º 35
0
 def penup(self):
     add_command(self.pen.up)
Ejemplo n.º 36
0
 def hideturtle(self):
     add_command(self.pen.tracer, 0)
Ejemplo n.º 37
0
 def penwidth(self, v):
     add_command(self.pen.width, v)
Ejemplo n.º 38
0
 def startfill(self):
     add_command(self.pen.fill, 1)
Ejemplo n.º 39
0
 def hideturtle(self):
     add_command(self.pen.tracer, 0)
Ejemplo n.º 40
0
 def setxy(self, x, y):
     add_command(self.pen.goto, x, y)
     add_command(get_canvas().update)
Ejemplo n.º 41
0
 def showturtle(self):
     add_command(self.pen.tracer, 1)
Ejemplo n.º 42
0
 def speed(self, x):
     add_command(self.pen.speed,x)
Ejemplo n.º 43
0
 def endfill(self):
     add_command(self.pen.fill, 0)
     add_command(get_canvas().update)
Ejemplo n.º 44
0
 def startfill(self):
     add_command(self.pen.fill, 1)
Ejemplo n.º 45
0
 def setx(self, x):
     t = self.pen
     add_command(t.goto, x, t.position()[1])
     add_command(get_canvas().update)
Ejemplo n.º 46
0
 def setx(self, x):
     add_command(self.pen.setx,x)
     add_command(get_canvas().update)
     add_command(get_scroller().resizescrollregion)