Hi, can anyone help me understand how to read the production rules of Turtle's L-system in the Rabbit plug-in?
i know the basics of the rules but i can't find a tutorial or explanation how to read them.
Especially when there are multiple rules acting at the same time it gets really confusing.
For example:
Rule 1 = 2FF[+1]
Rule 2 = F[1]-2
From what (i think) i understand in general,
Step 1 reads rule 1.
Step 2 reads rule 1 then rule 2.
Step 3 reads rule 1 then rule 2 then rule 1
Step 4 reads rule 1 then rule 2 then rule 1 then rule 2...
But in this case rule 2 involves rule 1. How do i read it?
Another thing is when there are multiple seeds, how does it affect the rules?
For example:
A = 1
1 = F+F
AA = ?
A-A = ?
Hopefully i explained my question clearly.
Help is very much appreciated!