Sitting on your deck with your laptop now, you realize there are so many possibilities in spiral-making. From wikipedia: Some of the most important sorts of two-dimensional spirals include: The Archimedean spiral The hyperbolic spiral Fermat's spiral The lituus The logarithmic spiral The Cornu spiral The Fibonacci or golden spiral The Spiral of Theodorus The involute of a circle spiral What to do? So many spirals, so little time. You decide to make a new spiral out there every week. You start playing around with short snippets of code that make spirals, like this: angle = PI * (3 - sqrt(5)) for i in range(1 to 800): t = i * angle x = sin(t) * t y = cos(t) * t drawpoint(x, y) By changing the angle, you ended up with a large variety of spirals to choose from: You spent the next five months making spirals in your field. You forgot about the original intentio...
A blog for exploring reading, writing, and occasionally, the beauty in numbers.