In a previous project, we drew a star fractal with recursion. A tutorial and source code were provided in that project. Based on the code, draw the following colorful star
In a previous project, we drew a star fractal with recursion. A tutorial and source code were provided in that project. Based on the code, draw the following colorful star
Draw the following fractal made up with stars. You may need to use recursion and trigonometry to do this project. The following figures show star fractal with different recursion depths
Draw all-sided hindu temple fractal. Refer to this Hindu Temple project.
Draw the following fractal of hex stars using Python and Turtle. First, design a function that draws hex star in any position and size.
After drawing pentagon spiral of pentagon spirals, draw colored version of hexagon spiral of spirals with recursion and Turtle library. Source Code:
After finishing 5 spirals and spiral of spirals, draw the following pentagon spiral of pentagon spirals using recursion. Source Code: (This code may run for several minutes)
Draw a dragon curve based on the golden ratio. At each recursion, the first recursion step turns 32.89 degrees to the left and move 0.74 times the original distance; the
Draw the following 12-Flake with Python Turtle. Related Projects:OctaflakePentaflake
Draw the Octaflake fractal with recursion and Turtle library. The following shows Octaflake in various recursion depths: Instead of stopping the recursion by recursion depth, you can also stop the
Draw hexaflake fractal that consists of hexagons with recursion. The following figures show hexaflake in different recursion depths. Source Code: