Fibonacci Tiling

Fibonacci sequence is a series of numbers with each number being the sum of previous two numbers. The first numbers are 1, 1. Here is the first 10 numbers in the list: 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89.

In this projects, draw squares with the sizes in fibonacci sequence. Tile them in the way as shown so that these squares will perfectly line up.

You can draw with recursion or loop.

Related Post