Two small #fpm projects using #cairo #fortran bindings to explore two #recursive algorithms and see what #SVG vector drawing can bring:
- The first one draws a von #Koch #snowflake, using the classical recursive algorithm: https://github.com/vmagnin/von_koch_snowflake
- The second one draws a #Penrose tiling (aperiodic tiling of the plane with two tiles): https://github.com/vmagnin/penrose_tiling
The algorithm is interesting as it uses two interlaced recursive procedures: A calls A & A & B, and B calls A & B.