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
1
techsias
By
Alan
Run
# HEAD # background b = rectangle(w=300, h=300, fill='white', stroke='none') # Line Left d0 = line(-100,50,0,90, stroke='#63a9da', stroke_width=20) | translate(x=-25, y=0) d1 = line(-100,50,0,0, stroke='#63a9da', stroke_width=20) | translate(x=-25, y=0) # Line Right d2 = line(100,50,0,0, stroke='#63a9da', stroke_width=20) | translate(x=25, y=0) d3 = line(100,50,0,90, stroke='#63a9da', stroke_width=20) | translate(x=25, y=0) # side curve c0 = circle(r=10,fill='#63a9da', stroke='none') | translate(x=25, y=0) c1 = circle(r=10,fill='#63a9da', stroke='none') | translate(x=-25, y=0) c2 = circle(r=10,fill='#63a9da', stroke='none') | translate(x=25, y=90) c3 = circle(r=10,fill='#63a9da', stroke='none') | translate(x=-25, y=90) c4 = circle(r=10,fill='#63a9da', stroke='none') | translate(x=125, y=50) c5 = circle(r=10,fill='#63a9da', stroke='none') | translate(x=-125, y=50) # TAIL g0 = line(-75,-50,-75,5, stroke='#00246b', stroke_width=20) g1 = line(75,-50,75,5, stroke='#00246b', stroke_width=20) g2 = line(0,-80,-75,-50, stroke='#00246b', stroke_width=20) g3 = line(0,-80,75,-50, stroke='#00246b', stroke_width=20) # side curve a0 = circle(r=10, fill='#00246b', stroke='none') | translate(x=0, y=-80) a1 = circle(r=10, fill='#00246b', stroke='none') | translate(x=75, y=-50) a2 = circle(r=10, fill='#00246b', stroke='none') | translate(x=-75, y=-50) # Side cut side0 = rectangle(w=29, h=10, fill='white', stroke='none') | rotate(-30) | translate(x=-75, y=5) side1 = rectangle(w=29, h=10, fill='white', stroke='none') | rotate(30) | translate(x=75, y=5) # Print arrow0 = b + d0 + c3 + d1 + c1 + c5 arrow1 = d2 + c0 + d3 + c2 + c4 arrow2 = g0 + g2 + a2 + a0 arrow3 = g3 + g1 + a1 + side0 + side1 show(arrow0,arrow1,arrow2,arrow3)
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login