Close

New Images

A project log for Python L-System

The L-System or Lindenmayer System is a mathematical system to describe the growth of plants or fractals.

jana-marieJana Marie 05/16/2016 at 07:530 Comments

rules['F'] = 'F[+F]F[-F]F'

axiom = 'F'

angle = 25


rules['X'] = 'F[+X][-X]FX'

rules['F'] = 'FF'

axiom = 'X'

angle = 25

Discussions