Info
| Version: | 2.0.2.1 |
| Author(s): | Svetlin Nakov |
| Last Update: | Saturday, February 27, 2021 |
| .NET Fiddle: | Create the first Fiddle |
| Project Url: | https://www.nuget.org/packages/Nakov.TurtleGraphics |
| NuGet Url: | https://www.nuget.org/packages/Nakov.TurtleGraphics |
Install
Install-Package Nakov.TurtleGraphics
dotnet add package Nakov.TurtleGraphics
paket add Nakov.TurtleGraphics
Nakov.TurtleGraphics Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
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);.