This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env julia | |
using Luxor | |
Drawing(500, 500, "/tmp/julia-flowers.png") | |
background("white") | |
function juliaflowers(cpos::Point, radius; petals=30, outercircleratio=0.75, innercircleratio=0.65) | |
# clockwise, from bottom LEFT... | |
points3 = ngon(cpos, radius, 3, pi/6, vertices=true) |