The .NET library "Nakov.TurtleGraphics" provides а very simple "turtle graphics" drawing interface for C# / .NET Windows Forms, designed for kids, learning to code.
It supports all standard turtle commands like "move-forward", "move-backward", "rotate", "move-to", "pen-up", "pen-down". Animates the turtle actions to demonstrate how it moves and rotates.
It provides a really simple API, through the static class "Turtle":
- Turtle.Rotate(30);
- Turtle.Forward(200);
- Turtle.PenUp();
- Turtle.Rotate(120);
- Turtle.Forward(200);
- Turtle.PenDown();
- Turtle.Rotate(120);
- Turtle.Forward(200);