话不多说,先上图,如上图所示,简单修改参数就可以实现很多有趣的线条和图案。
本篇中用到了随机数,rgb颜色设置,通过python的小海龟turtle绘制,代码如下:
import turtle
import random
turtle.tracer(0)
turtle.colormode(255)
turtle.speed(0)
xh=4
while xh<360:
xh+=1
r=random.randint(0,255)
g=random.randint(0,50)
b=random.randint(0,200)
turtle.color(r,g,b) # 设置随机颜色
turtle.penup()
cd=random.randint(60,180) # 移动随机长度,决定图案的大小
turtle.forward(100)
turtle.pendown()
turtle.circle(50)
turtle.penup()
turtle.goto(0,0)
turtle.pendown()
jd=random.randint(1,40) # 随机角度
turtle.left(1)
turtle.done()