flutter_turtle
flutter_turtle is a simple implementation of turtle graphics for Flutter. It simply uses a custom painter to draw graphics by a series of Logo-like commands.
Why I Make This?
It is always fun to make your own DSL!
Example
A quick example:
Commands
Currently supported commands are including:
Turtle Motion
- PenDown
- PenUp
- Left
- Right
- Forward
- Back
- SetColor
- SetStrokeWidth
- GoTo
- ResetPosition
- ResetHeading
Flow Control
- IfElse
- Repeat
Macros
- SetMacro
- RunMacro
Misc
- Exec