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

27 lines
303 B
JSON

{
"name": "koch",
"alphabet": "F+-",
"axiom": "F",
"rules": [
[
"F",
"F+F-F-F+F"
]
],
"angle": 90.0,
"distance": 10.0,
"representation": [
[
"F",
"Forward"
],
[
"+",
"TurnRight"
],
[
"-",
"TurnLeft"
]
]
}