Explore
Courses
Batches
Sketches
Statistics
Code a Pookkalam
Jobs
Devsprint
People
Course Creation
Create a Course
Guidelines
Resources
Support
Blogs
My Profile
About Us
Login
Sketches
0
Pookkalam
By
Susmith
Run
#Three outline circle c1 = circle(r=50, fill = "#E84545", stroke="none") c2 = circle(r=100, fill = "#903749", stroke="none") c3 = circle(r=150, fill = "#53354A", stroke="none") # four center circle c4 = circle(x=50, y=0, r=50, fill = color(r=250, g=200, b=0, a=0.5), stroke="none") c5 = circle(x=0, y=50, r=50, fill = color(r=250, g=200, b=0, a=0.5), stroke="none") c6 = circle(x=-50, y=0, r=50, fill = color(r=250, g=200, b=0, a=0.5), stroke="none") c7 = circle(x=0, y=-50, r=50, fill = color(r=250, g=200, b=0, a=0.5), stroke="none") # 4 circle touch at one point c8 = circle(x=0, y=140, r=2.5, fill = "#F0ECE3", stroke="none") c9 = circle(x=0, y=130, r=5.0, stroke="none", fill = "#DFD3C3") c10 = circle(x=0, y=115, r=7.5, stroke="none", fill = "#C7B198") c11 = c8 + c9 + c10 c12 = c11 | repeat(12, rotate(30)) # line repeat c16 = line(x1=110, y1=30, x2=140, y2=30, stroke="#FFAAA5", stroke_width=3) | repeat(12, rotate(30)) # line repeat c17 = line(x1=110, y1=-30, x2=140, y2=-30, stroke="#FFAAA5", stroke_width=3) | repeat(12, rotate(30)) # center Dot c13 = circle(r=5, fill = "#2B2E4A", stroke="none") # 3 centric circles s1 = ellipse(x=0, y=75, w=15, h=7.5, fill = "#F0ECE3", stroke="none") #s2 = s1 | scale(0.67) s3 = s1 | scale(0.40) c14 = s1+s3 | repeat(12, rotate(30)) # show(c3, c2, c1, c4, c5, c6, c7, c12, c13, c16, c17, c14)
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login