Given any three tangent circles, there are exactly two other circles that are tangent to the three circles. In this project, we are drawing one of the two tangent circles
Given any three tangent circles, there are exactly two other circles that are tangent to the three circles. In this project, we are drawing one of the two tangent circles
Draw a colored version of Sierpinski Pentagon.
Use recursion to draw the following Sierpinski Pentagon. This project is closed related to Pentaflake Fractal. The difference is the in Pentaflake we also draw an upside down Pentaflake recursively.
Use recursion to draw the following Box Fractal shape.
In this tutorial we are going to show how to draw random islands with Python Turtle. The idea is similar to the Koch Snowflake project with added randomness. Instead of
Use recursion to draw random islands. Related Projects:Random Cloud GeneratorRandom Mountain GeneratorRandom City Skyline Generator
Arrange Koch Snowflakes to fill the screen.
Knowing how to draw random mountains and random clouds, draw a scene that combines both. You may want to check out these tutorials for this project:Drawing random cloudsDrawing random mountains
Knowing to how to draw a single puffy cloud, draw many of them in random locations, shapes, and sizes. You want want to check out tutorial on how to draw
In this tutorial we are show you how to draw random mountain curves: The general idea is to define a recursive function that draw mountain curve given two end points.