Add new instruction: draw forward without drawing a line

This commit is contained in:
Dimitri Lozeve 2018-02-01 22:05:45 +00:00
parent 217ebcf8f6
commit 61fd4963f1
2 changed files with 31 additions and 0 deletions

27
examples/cantor.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "cantor",
"alphabet": "AB",
"axiom": "A",
"rules": [
[
"A",
"ABA"
],
[
"B",
"BBB"
]
],
"angle": 60.0,
"distance": 10.0,
"representation": [
[
"A",
"Forward"
],
[
"B",
"ForwardNoDraw"
]
]
}