Description
Our Turtle should be able to draw a Bloom
Suggested Script
# The example script (in pure logo) was:
let petals = 12 // [4:24]
let radius = 4.2 // [1:0.2:7] circle radius, mm
let spread = 0.8 // [0:0.2:3] gap between circle starts, mm
// --- quality ---
let stitch = 2.2 // [1:0.1:4]
stitchlen stitch
repeat petals [
repeat 36 [ fd radius rt 10 ]
rt (360 / petals) fd spread
]
Links
No response
Description
Our Turtle should be able to draw a Bloom
Suggested Script
Links
No response