我想要 360 位 PNG 位图,每个位图都是一个弧线,并表示进度中的一个步骤。以下位图显示步骤 60(距顶部 60 度)和步骤 120。
如何在代码中绘制这些位图?
编辑:我现在可以绘制它但不知道如何将起点设置在顶部而不是底部
import turtle
wn = turtle.Screen
turtle.hideturtle()
turtle.hideturtle()
turtle.ht()
turtle.speed(0)
turtle.pensize(11)
turtle.color("grey")
turtle.circle(200)
turtle.color("red")
turtle.circle(200, 60, 3600)
cv = turtle.getcanvas()
cv.postscript(file="circle.ps", colormode='color')
turtle.done()
相关分类