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
Maze of circles
By
Anand Chitipothu
This sketch was created using an old version of the library.
Run
def concentric_circles(x, y, d, n): delta = d/n for i in range(n): circle(x, y, d) d = d-delta n = 36 d = 400 w = 300 h = 300 concentric_circles(0, 0, d, n) concentric_circles(w, h, d, n) concentric_circles(0, h, d, n) concentric_circles(w, 0, d, n) concentric_circles(w/2, h/2, d, n)
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login