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.
1 parent 081f5b6 commit 23408efCopy full SHA for 23408ef
Types/Turtle/GoTo.ps1
@@ -25,5 +25,5 @@ if ($this.IsPenDown) {
25
} else {
26
$this.Steps += " m $deltaX $deltaY"
27
}
28
-$this.Position = $x, $y
+$this.Position = $deltaX, $deltaY
29
return $this
Types/Turtle/Teleport.ps1
@@ -19,5 +19,5 @@ $Y
19
$deltaX = $x - $this.X
20
$deltaY = $y - $this.Y
21
$this.Steps += "m $deltaX $deltaY"
22
23
0 commit comments