Pentigree (five times)

Pentigree (five times)

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
lsystem PentigreeFiveTimes {
 
set symbols axiom = F + + F + + F + + F + + F;
set iterations = 4;
set continuousColoring = true;
 
interpret F as DrawForward(6);
interpret + as TurnLeft(36);
interpret - as TurnLeft(-36);
 
rewrite F to + F + + F - - - - F - - F + + F + + F -;
}
 
process all with SvgRenderer;