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