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
Olympic Rings
By
Joseph Johnson
Run
#Background bg = rectangle(w=500, h=500, fill='#FFFFFF') show(bg) #Acsents e1 = circle(r=100, fill='#fbfaff', stroke='none') e2 = circle(r=90, fill='#f2ebfb', stroke='none') e3 = circle(r=80, fill='#ebd9fc', stroke='none') e4 = circle(r=70, fill='#d4bbfc', stroke='none') e5 = circle(r=60, fill='#9667e0', stroke='none') group1 = combine([e1,e2,e3,e4,e5]) | translate(x=-130, y=130) | scale(1.3) show(group1) e1 = circle(r=100, fill='#FFF3ED', stroke='none') e2 = circle(r=90, fill='#FFE9DB', stroke='none') e3 = circle(r=80, fill='#FFD2B6', stroke='none') e4 = circle(r=70, fill='#FFA168', stroke='none') e5 = circle(r=60, fill='#FF7825', stroke='none') group1 = combine([e1,e2,e3,e4,e5]) | translate(x=140, y=-140) | scale(1.3) show(group1) #Rings w=9 y=20 c1 = circle(r=40, x=50, y=-y, stroke='#009748', stroke_width=w) c2 = circle(r=40, x=-50, y=-y, stroke='#FCA836', stroke_width=w) c3 = circle(r=40, x=100, y=y, stroke='#E93854', stroke_width=w) c4 = circle(r=40, x=0, y=y, stroke='#020202', stroke_width=w) c5 = circle(r=40, x=-100, y=y, stroke='#0182C4', stroke_width=w) logo = combine([c1,c2,c3,c4,c5]) | scale(0.5) show(logo)
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login