📜  Python中的 turtle.get_shapepoly()函数(1)

📅  最后修改于: 2023-12-03 15:34:24.555000             🧑  作者: Mango

Python中的 turtle.get_shapepoly()函数

简介

在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之后才能调用,否则会报错。