LineDream makes creating generative art simple and intuitive. Output SVGs for use on the web, pen plotters, or games!
Getting Started Documentation View on GitHubfrom LineDream import Canvas, Rectangle
Canvas.width = 300
Canvas.height = 300
Canvas.background_color='#263238'
for x in range(18):
r = Rectangle(150,150, 200, 200)
r.rotate(10*x)
r.stroke_color = '#FFCB6B'
Canvas.save("rectangles.svg")
pip install LineDream