赞
踩
"大风车吱呀吱哟哟地转,这里的风景呀真好看,天好看,地好看,还有一起快乐的小伙伴,大风车转啊转悠悠,快乐的伙伴手牵着手,牵着你的手,牵着我的手,今天的小伙伴,明天的好朋友,好朋友"
小时候,一到晚上,就安静的坐在电视机前,看大风车电视节目。今天我们就使用turtle来画大风车
画大风车的思路如下:
画多边形,然后从多边形的各个顶点到中心画spiral(螺旋), 最后填充颜色即可。
-
- from turtle import *
- import math
- from random import *
-
-
- def draw_spiral(x, y, r, direction, num = 4,alpha=5):
- pensize(1)
- if r < 10: return
- d = direction
- r_ratio = math.cos(math.radians(36)) / math.cos(math.radians(36 - alpha))
- d_ratio = math.sin(math.radians(36)) - r_ratio * math.sin(math.radians(36 - alpha))
- lastpx = -1;
- lastpy = -1;
- firstpx = 0;
- firstpy = 0;
- las
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。