lsystems/examples/gosper.json
2018-01-17 22:18:47 +00:00

35 lines
400 B
JSON

{
"name": "gosper",
"alphabet": "AB+-",
"axiom": "A",
"rules": [
[
"A",
"A-B--B+A++AA+B-"
],
[
"B",
"+A-BB--B-A++A+B"
]
],
"angle": 60.0,
"distance": 10.0,
"representation": [
[
"A",
"Forward"
],
[
"B",
"Forward"
],
[
"+",
"TurnRight"
],
[
"-",
"TurnLeft"
]
]
}