Create a 3D vector path from an L-system grammar. Draw forward with F, move forward without drawing with f, use + and - for yaw Z, & and ^ for pitch X, \ and / for roll Y, and [ ] for 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 Rotation (3D Angle)
The starting turtle orientation. Forward is along local Y.
- 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.