Based on the function that draws Isosceles Trapezoid in the this previous project, draw the following fractal tree with Python and Turtle. Related Projects: Projects with similar difficulty Fractals Recursion
Based on the function that draws Isosceles Trapezoid in the this previous project, draw the following fractal tree with Python and Turtle. Related Projects: Projects with similar difficulty Fractals Recursion
Based on golden fractal tree project, draw the following shape that contains 5 golden fractal trees.
Golden Fractal Tree is a tree based on Golden Ratio. The golden fractal tree contains the main branch and three smaller golden fractal trees: the first branch turns left by
Fill the five pointed stars with random colors with random colors. Refer to this project that draw uncolored five pointed star fractal.
Draw a five pointed star fractal that have nested five pointed star as shown. Hint: Create a function that draws five pointed star in any location, orientation, and size. Source
Draw the following fractal made up of nesting pentagrams with either recursion or iteration. Hint: Making a function that draws pentagram in any location, radius, and direction will help! Source
Using the center coordinate and zoom factor to draw the following Mandelbrot Set visualizations. Source Code:
Write a Python program to generate 1000+ images of Mandelbrot Set with ever zooming ranges. Please note that Turtle is not used in this project for speed consideration. Then use
Write a Python program to generate hundreds of images of Julia Set with ever zooming ranges. Please note that Turtle is not used in this project for speed consideration. Then
In this project, we are generate several Julia Sets by varying the constant c in the normal Julia Set function. Turtle will be too slow to do this work. Instead