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.PenUp/PenDown()
1 parent 3194cad commit 032ea26Copy full SHA for 032ea26
Types/Turtle/Alias.psd1
@@ -0,0 +1,7 @@
1
+@{
2
+ pd = 'PenDown'
3
+ pu = 'PenUp'
4
+ fd = 'Forward'
5
+ down = 'PenDown'
6
+ up = 'PenUp'
7
+}
Types/Turtle/PenDown.ps1
@@ -0,0 +1,2 @@
+$this.IsDown = $true
+return $this
Types/Turtle/PenUp.ps1
+$this.IsDown = $false
0 commit comments