35 lines
389 B
JSON
35 lines
389 B
JSON
{
|
|
"name": "sierpinskiArrow",
|
|
"alphabet": "AB+-",
|
|
"axiom": "A",
|
|
"rules": [
|
|
[
|
|
"A",
|
|
"B+A+B"
|
|
],
|
|
[
|
|
"B",
|
|
"A-B-A"
|
|
]
|
|
],
|
|
"angle": 60.0,
|
|
"distance": 10.0,
|
|
"representation": [
|
|
[
|
|
"A",
|
|
"Forward"
|
|
],
|
|
[
|
|
"B",
|
|
"Forward"
|
|
],
|
|
[
|
|
"+",
|
|
"TurnRight"
|
|
],
|
|
[
|
|
"-",
|
|
"TurnLeft"
|
|
]
|
|
]
|
|
}
|