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