Pookkalam by Abhishek A

Code

c1 = circle(r=150, fill="#ff6200", stroke="none")
c2 = circle(r=140, fill="#fffccc", stroke="none")
c3 = circle(r=125, fill="#990800", stroke="none")
c4 = circle(x=125, y=50, r=10, fill="#24591f", stroke="none") | repeat (8, rotate (45))
c5 = circle(r=100, fill="#fffccc", stroke="none")
s1 = rectangle (w=175, h=175, fill="#a809ad", stroke="none") | repeat (2, rotate (45))
c6 = circle(r=82, fill="#f7e516", stroke="none")
s2 = ellipse(w=200, h=100, fill="#15b800", stroke="none")
s3 = (s2 | rotate(45)) + (s2 | rotate(90)) + (s2 | rotate(135))

clr1 = color(r=142, g=8, b=204, a=0.7)
c7 = circle(x=41, y=0, r=41, fill=clr1, stroke="none")
c8 = circle(x=-41, y=0, r=41, fill=clr1, stroke="none")
c9 = circle(x=0, y=41, r=41, fill=clr1, stroke="none")
c10 = circle(x=0, y=-41, r=41, fill=clr1, stroke="none")



show(c1, c2, c3, c4, s1, c5, s2, s3, c6, c7, c8, c9, c10)