python螺旋图_如何用Python语言编写螺旋线???

该博客展示了如何使用Python的Image和ImageDraw库创建 Spirograph 图形。代码中定义了一个名为SpireShape的类,用于绘制点和线,并实现了一个spirto方法来根据给定点、起始角度和散射速度生成 Spirograph 图形。通过调整参数,可以在不同位置和形状之间变化图形。最后,代码创建了一个 Spirograph 图并显示出来。
摘要由CSDN通过智能技术生成

展开全部

#coding=utf-8

from math import sqrt,cos,sin

import Image, ImageDraw

class SpireShape(object):

def __init__(self, draw):

self.draw = draw

self.line_width = 1

self.line_color = (0,0,0)

self.current_point = (0, 0)

def setPoints(self,points):

self.points = points

def setLineWidth(self,line_width):

self.line_width = line_width

def setLineColor(self,line_color):

self.line_color = line_color

def moveto(self, p):

self.current_point = p

def lineto(self, p):

self.draw.line((self.current_point, p), width=self.line_width, fill=self.line_color)

self.current_point = p

def point(self, p):

self.draw.point(p,fill=self.line_color)

self.current_point = p

def spire(self, p, angle,rate):

'''

p is start point,angle is start angle,rate is scatter speed len/thita.

'''

r = 0;

thita = 0;

pi = 3.14

du = 2*pi/360

while r<=500.0:

posX = r*cos(thita+angle*du)

posY = r*sin(thita+angle*du)

pSpare =(posX+p[0],posY+p[1])

self.point(pSpare)

r = r+thita*rate

thita = thita+du

# 测试e69da5e887aa62616964757a686964616f31333337383264代码

if __name__ == '__main__':

im = Image.new('RGBA', (1024,1024), (255,255,255))

draw = ImageDraw.Draw(im)

b = SpireShape(draw)

point = (500,500)

b.spire(point,0,0.2)

#b.spire(point,90,0.2)

del draw

im.show()

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值