Code
r=rectangle(h=350,w=350,fill="#39192A ")
show(r)
shape = rectangle(w=250, h=250,stroke="#E3E4DE") | repeat(9, rotate(10))
show(shape)
shape = circle(x=50, y=0, r=50,fill="#F43B9D ") | repeat(6, rotate(60))
show(shape)
shape = circle(x=110, y=0, r=10,fill="#E97D11") | repeat(36, rotate(10))
show(shape)
c=circle(r=65,stroke_width="4")
show(c)
s1 = rectangle(fill="#FF1B67 ",h=60,w=60)
s2 = s1 | rotate(45)
s3 = s1 | rotate(90)
s4 = s1 | rotate(135)
show(s1, s2, s3, s4)
shape = ellipse(h=40,w=20) | repeat(3, rotate(60))
show(shape)
shape = rectangle(w=50, h=50,stroke="#E3E4DE") | repeat(9, rotate(10))
show(shape)