TurtleGraphics is a platform independent library that provides turtle graphics for the .Net Platform.
Turtle.SetPenWidth(5);
Turtle.SetColor("blue");
for (int i = 0; i < 4; i++)
{
Turtle.Forward(50);
Turtle.TurnRight(90);
}
Turtle.ShowTurtle();Comming Soon
Moves the turtle x steps forward.
Moves the turtle x steps backwards.
Moves the turtle turn right by x degrees.
Moves the turtle turn left by x degrees.
Lifts the pen.
Puts the pen down again.
Paints a dot at the current position with a given diameter.
Sets the current color for fills or lines. Valid colors are listed here: All Colors
Sets the current line width.
Call this Function to start filling a polygon.
Call this Function to end to filling.
Prints the given number of text on the console.
Asks the user to input a double number.
Asks the user to input a float number.
Asks the user to input a int number.
Asks the user to input a long number.
Asks the user to input a string value.
- .Net Standard 2.0
- Avalonia
- Avalonia.Desktop
- Avalonia.Themes.Fluent
