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
Concentric Design
By
Gayatri
This sketch was created using an old version of the library.
Run
def design_circles(x, y, d): delta = d/10 for i in range(10): circle(x, y, d) d = d -delta x = x +delta/4 y = y + delta/4 x = 50 y = 50 d = 50 for i in range(4): design_circles(x, y, d) x = x + d d = d + 5 design_circles(x,y,d) y=y+d
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login