Back

L-System Resource Vector Node


Create a 2D vector path from an L-system grammar. Draw forward with F, and move forward without drawing with f, + and - turn, and [ ] create branches.

Properties

- Axiom (String)
The initial L-system symbol string.

- Rules (String)
Replacement rules separated by new lines or semicolons.

- Iterations (Int)
The number of times the rules are applied. Warning: this can get heavy fast at higher values.

- Initial Angle (Angle)
The starting turtle direction.

- Angle (Angle)
The turn amount used by + and - symbols.

- Step Length (Float)
The distance moved by draw and move symbols.

- Draw Symbols (String)
Symbols that draw a segment while moving forward.

- Move Symbols (String)
Symbols that move forward without drawing.

- Center (Bool)
Move the generated path so its bounding box is centered on the origin.