Python中的 turtle.get_poly()函数
海龟模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。
turtle.get_poly()
该函数用于返回最后记录的多边形。它不需要任何论据。
句法 :
turtle.get_poly()
下面是上述方法的一个例子的实现:
示例:制作一个多边形并使用 get_poly() 方法
在此示例中,我们使用 begin_poly() 和 end_poly() 方法绘制一个椭圆并记录它。通过使用 get_poly() 方法,我们可以获得多边形的所有坐标,然后打印出来。我们也可以用它来注册形状。
Python3
# import package
import turtle
# start recording polygon
turtle.begin_poly()
# form an ellipse
turtle.circle(20,90)
turtle.circle(10,90)
turtle.circle(20,90)
turtle.circle(10,90)
# end recording polygon
turtle.end_poly()
# get poly that recorded
print(turtle.get_poly())
输出 :
((0.00,0.00), (7.65,1.52), (14.14,5.86), (18.48,12.35), (20.00,20.00), (19.24,23.83), (17.07,27.07),
(13.83,29.24), (10.00,30.00), (2.35,28.48), (-4.14,24.14), (-8.48,17.65), (-10.00,10.00),
(-9.24,6.17), (-7.07,2.93), (-3.83,0.76), (0.00,0.00))