摘要: import turtle import math ''' @x,y 五角星中点 @width 五角星中点到某一个锐角的距离 @degree 顺时针旋转的角度 ''' def drawFivePointedStar(x,y,width,degree): x1=x+math.cos((162-degree)/180*math.pi)*width y1=y+math.sin((16... 阅读全文
posted @ 2018-03-19 11:39 130-张煌 阅读(171) 评论(0) 推荐(0)