L-Systems

L-Systems are an algorithmic way of describing the growth of plants and cellular evolution by using recursive instructions that generates fractal visual.

It uses Turtle Geometry : It's a way of drawing by using sequential command. The two main command are go forward and turn . Within a tridimensional context, turn instructions are in the 3 different axis.

L-Systems are composed of 3 things : As an exemple, the default L-system in Touch designer uses this data:
premise:FFFA

A=!"[B]////[B]////B
B=&FFFA
It makes a nice 3D tree

References



- home -