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.js.teleport
1 parent 62af716 commit ef39795Copy full SHA for ef39795
Types/Turtle.js/teleport.js
@@ -1,7 +1,7 @@
1
function teleport(x,y) {
2
var penState = this.penDown
3
this.penDown = false
4
- step(x - this.x, y - this.y)
+ this.step(x - this.x, y - this.y)
5
this.penDown = penState
6
return this
7
}
0 commit comments