Python中的turtle.setpos()和turtle.goto()函数

Python中的turtle.setpos()和turtle.goto()函数

turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。

turtle.setpos()

该方法用于将Turtle移动到一个绝对位置。这个方法的别名是:setpos, setposition, goto.

语法: turtle.setpos(x, y=None) or turtle.setposition(x, y=None) or turtle.goto(x, y=None)

参数:

x:一个Vec2D-向量的x坐标

y:一个Vec2D-向量的y坐标

下面是上述方法的实现和一些例子。

示例 1:

# import package
import turtle 
  
# forward turtle by 100
turtle.forward(100)
  
# stamp the turtle shape
turtle.stamp()
  
# set the position by using setpos()
turtle.up()
turtle.setpos(-50,50)
turtle.down()
  
# forward turtle by 100
turtle.forward(100)
  
# stamp the turtle shape
turtle.stamp()
  
# set the position by using goto()
turtle.up()
turtle.goto(-50,-50)
turtle.down()
  
# forward turtle by 100
turtle.forward(100)

输出 :

Python中的turtle.setpos()和turtle.goto()函数

例子2 :

# import package
import turtle 
  
# method to raw pattern
# of circle with rad radius
def draw(rad):
      
    # draw circle
    turtle.circle(rad)
      
    # set the position by using setpos()
    turtle.up()
    turtle.setpos(0,-rad)
    turtle.down()
  
# loop for pattern
for i in range(5):
    draw(20+20*i)

输出 :

Python中的turtle.setpos()和turtle.goto()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程