> > That sounds exiting, are there also plans to implement "discrete" > > fractals? (combinat.WordMorphisms and word-paths and things like > > that?) > > >http://www.sagemath.org/doc/reference/sage/combinat/words/paths.html > >http://alexis.monnerot-dumaine.neuf.fr/articles/fibonacci%20fractal.pdf
I just added on the animate page of the sage wiki an animation [1] that was dying in one of my folder. A fractal sequence of tiles related to the Fibonacci sequence. Maybe sage: fractals.fibonacci_tile could exist and return a .png file? or maybe a tikzpicture? One can obtain the tikz code in two lines : sage: w = words.fibonacci_tile(2) sage: w.tikz_trajectory() '(0, 0) -- (0, -1) -- (-1, -1) -- (-1, -2) -- (0, -2) -- (0, -3) -- (1, -3) -- (1, -2) -- (2, -2) -- (2, -3) -- (3, -3) -- (3, -4) -- (2, -4) -- (2, -5) -- (1, -5) -- (1, -4) -- (0, -4) -- (0, -5) -- (-1, -5) -- (-1, -6) -- (0, -6) -- (0, -7) -- (-1, -7) -- (-1, -8) -- (-2, -8) -- (-2, -7) -- (-3, -7) -- (-3, -6) -- (-2, -6) -- (-2, -5) -- (-3, -5) -- (-3, -4) -- (-4, -4) -- (-4, -5) -- (-5, -5) -- (-5, -4) -- (-6, -4) -- (-6, -3) -- (-5, -3) -- (-5, -2) -- (-4, -2) -- (-4, -3) -- (-3, -3) -- (-3, -2) -- (-2, -2) -- (-2, -1) -- (-3, -1) -- (-3, 0) -- (-2, 0) -- (-2, 1) -- (-1, 1) -- (-1, 0) -- (0, 0)' I think the idea of having fractals.[TAB] is great. Sébastien [1] http://wiki.sagemath.org/animate#FibonacciTiles -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org