Tested tool guide
Tested browser tools
Checked August 16, 2026
What L-System Fractal Generator does, with a checked example
Specify an axiom, replacement rules, an iteration count, and a turn angle to render a finite stage of an L-system fractal. Successive rewrites create the instruction word, which is then interpreted as a path containing forward moves, turns, and optional branches. This supports Koch-like curves, trees, and stylized plants. The usual source of confusion is that rewriting and drawing are separate: some symbols control later substitutions without drawing a segment, while the angle changes the rendered geometry without changing the rewritten word.
Worked example
A concrete input and expected output from the current implementation.
Input
Axiom: F
Rule for F: F+F
Iterations: 1
Angle: 90 degrees
->
Expected output
A path made of two equal-length line segments joined at a right angle.
The single rewrite replaces the initial F with F+F. The two F symbols draw two segments, while + changes the heading by 90 degrees before the second segment.