Now I have a function called Hexagon(x,y,n) which will draw a hexagon centered on (x,y) and with side length of n in python window.
My goal is to draw a tessellation animation which will draw the hexagon one after another from the center of the screen and spread out one by one (As the picture I attached here http://s7.postimage.org/lu6qqq2a3/Tes.jpg).
I am looking for the algorithm solving this problem. New to programing and I found it hard to do that.
Thanks!