Animated Fibonacci Spiral in SVG
May 19th, 2014
The Fibonacci sequence (1, 1, 2, 3, 5 ... Fn where Fn = Fn-1+Fn-2) and the Golden Ratio fascinate me. The sequence can be iterated with a slick one-liner in CoffeeScript (or other languages that support this kind of assignment):
[fib, fibNext] = [fibNext, fib+fibNext]
Click below to redraw