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
4
Winnie The Pooh
By
Neha Arun
Run
#baground r=rectangle(w=300,h=300,fill="skyblue") show(r) #face e=ellipse(x=0,y=90,w=110,h=80,fill="#F7931E")|rotate(10) e1=ellipse(x=5,y=55,w=100,h=50,fill="#F7931E")|rotate(10) show(e,e1) #ears c=circle(x=-40,y=115,r=13,fill="#EF7F01")|rotate(15) c1=circle(x=40,y=120,r=13,fill="#EF7F01")|rotate(370) show(c,c1) #eyes def dot(x, y): c = circle(x=x, y=y, r=5, fill="black") return c d1 = dot(x=15, y=83)|rotate(5) d2=dot(x=-25,y=79)|rotate(5) show(d1,d2) #eyebrows p1=point(-30,100) p2=point(-30,105) p3=point(-50,y=90) p4=point(-3,105) p5=point(-3,110) p6=point(20,100) shape=polygon([p1,p2,p3],fill="black") shape1=polygon([p4,p5,p6],fill="black") show(shape,shape1) #nose p1=point(-10,74) p2=point(-12,72) p3=point(-12,70) p4=point(-10,68) p5=point(-5,68) p6=point(-12,68) p7=point(-5,70) shape=polygon([p1,p2,p3,p4,p5,p6,p7],fill="black") show(shape) #mouth p1=point(-5,55) p2=point(-15,45) p3=point(-12,40) p4=point(1,40) p5=point(5,50) shape=polygon([p1,p2,p3,p4,p5],fill="#F52532") show(shape) #hands e=ellipse(x=60,y=-10,w=20,h=50,fill="#F7931E")|rotate(10) c=circle(x=60,y=-30,r=10,fill="#F7931E")|rotate(5) e1=ellipse(x=-50,y=-4,w=20,h=40,fill="#F7931E")|rotate(350) show(e,c,e1) #dress r=rectangle(x=5,y=7,w=95,h=60,fill=" #F52532")|rotate(5) r1=rectangle(x=-45,y=-5,w=25,h=30,fill="#F52532")|rotate(335) r2=rectangle(x=52,y=-10,w=25,h=30,fill="#F52532")|rotate(37) show(r1,r2,r) #hands2 e2=ellipse(x=-20,y=-27,w=25,h=60,fill="#F7931E")|rotate(300) c1=circle(x=-15,y=15,r=10,fill="#F7931E") show(e2,c1) #neck p1=point(-40,32.5) p2=point(0,30) p3=point(40,40) shape=polygon([p1,p2,p3],fill="#F7931E") show(shape) #body r=rectangle(x=5,y=-30,w=95,h=40,fill="#F7931E")|rotate(5) show(r) #legs e=ellipse(x=-60,y=-20,w=30,h=60,fill="#F7931E")|rotate(45) e1=ellipse(x=65,y=-10,w=30,h=60,fill="#F7931E")|rotate(320) shape=ellipse(x=-10,y=-60,w=30,h=40,fill="#EF7F01")+ellipse(x=15,y=-60,w=30,h=40,fill="#EF7F01") show(e,e1,shape) #baground r=rectangle(x=0,y=-150,w=300,h=180,fill="green") show(r)
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login