Add example: lakes and islands

This commit is contained in:
Dimitri Lozeve 2018-02-01 22:13:08 +00:00
parent 61fd4963f1
commit e6b5ddb093

35
examples/islands.json Normal file
View file

@ -0,0 +1,35 @@
{
"name": "islands",
"alphabet": "Ff+-",
"axiom": "F+F+F+F",
"rules": [
[
"F",
"F+f-FF+F+FF+Ff+FF-f+FF-F-FF-Ff-FFF"
],
[
"f",
"ffffff"
]
],
"angle": 90.0,
"distance": 10.0,
"representation": [
[
"F",
"Forward"
],
[
"f",
"ForwardNoDraw"
],
[
"+",
"TurnRight"
],
[
"-",
"TurnLeft"
]
]
}