📅  最后修改于: 2023-12-03 15:34:24.555000             🧑  作者: Mango
在Python的Turtle模块中,turtle.get_shapepoly()
函数能够获取当前shape的坐标列表。
turtle.get_shapepoly()
该函数返回当前shape的坐标列表, 返回类型为tuple。
获取turtle当前shape的坐标列表:
import turtle
turtle.shape("turtle")
poly = turtle.get_shapepoly()
print(poly)
turtle.done()
输出结果如下:
((-10,0),(-10,-5),(-5,-10),(5,-10),(10,-5),(10,0),(5,3),(0,10),(-5,3))
该函数必须在设置shape之后才能调用,否则会报错。