Skip to content

Commit

Permalink
Micro-optimisation of L-system rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Amphiluke committed Mar 2, 2024
1 parent e74fd00 commit a93208c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/stores/bank.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ export default [
axiom: "AAAA",
rules: {
A: "F+++++++++F|",
F: "F++++++++F----------------F++++++++F",
F: "F++++++++F|++F++++++++F",
},
alpha: 0,
theta: 10,
Expand All @@ -532,7 +532,7 @@ export default [
axiom: "A+A",
rules: {
A: "F++++++F",
F: "A----------------A",
F: "A|++A",
},
alpha: 0,
theta: 10,
Expand Down Expand Up @@ -1357,14 +1357,14 @@ export default [
"stroke-width": "2.5",
},
},
{ // [PP]
{ // [PP*]
lid: "spiral tiling",
axiom: "AAAA",
rules: {
F: "F",
A: "X+X+X+X+X+X+",
X: "[F+F+F+F[---X-Y]+++++F++++++++F-F-F-F]",
Y: "[F+F+F+F[---Y]+++++F++++++++F-F-F-F]",
X: "[F+F+F+F[---X-Y]+++++F|----F-F-F-F]",
Y: "[F+F+F+F[---Y]+++++F|----F-F-F-F]",
},
alpha: 0,
theta: 15,
Expand Down

0 comments on commit a93208c

Please sign in to comment.