We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Turtle.Rotate()
1 parent 05ff09b commit 7cffde5Copy full SHA for 7cffde5
Types/Turtle/Rotate.ps1
@@ -0,0 +1,8 @@
1
+<#
2
+.SYNOPSIS
3
+ Rotates the turtle.
4
+.DESCRIPTION
5
+ Rotates the turtle by the specified angle.
6
+#>
7
+param([double]$Angle = 90)
8
+$this.Heading += $Angle
0 commit comments