Golden Ratio is a number fib(n+1)/fib(n) will converge to, where fib(n) represents n-th fibonacci number. The value is (1+sqrt(5))/2 ≈ 1.61803398875. In similar style to fibonacci tiling, draw a golden
You programmed to draw a random mesh in a previous project. Now color each polygon with slightly varying colors with colorsys library (don’t use all hue range).
Draw the following hexagram with Python and Turtle. Hint: Think about where to start. The point at the bottom looks like a good starting point. Related Projects: Projects with similar