The Turtle provides Logo-like functionality to draw shapes by manipulating the properties of a pen and drawing primitives.
Specifies how fast the turtle should move. Valid values are 1 to 10. If Speed is set to 10, the turtle moves and rotates instantly.
Gets or sets the current angle of the turtle. While setting, this will turn the turtle instantly to the new angle.
Gets or sets the X location of the Turtle. While setting, this will move the turtle instantly to the new location.
Gets or sets the Y location of the Turtle. While setting, this will move the turtle instantly to the new location.
Shows the Turtle to enable interactions with it.
Hides the Turtle and disables interactions with it.
Sets the pen down to enable the turtle to draw as it moves.
Lifts the pen up to stop drawing as the turtle moves.
Moves the turtle to a specified distance. If the pen is down, it will draw a line as it moves.
Turns and moves the turtle to the specified location. If the pen is down, it will draw a line as it moves.
Turns the turtle by the specified angle. Angle is in degrees and can be either positive or negative. If the angle is positive, the turtle turns to its right. If it is negative, the turtle turns to its left.
Turns the turtle 90 degrees to the right.
Turns the turtle 90 degrees to the left.