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.penUp/penDown
1 parent c1ef128 commit 28ec8c9Copy full SHA for 28ec8c9
Turtle.types.ps1xml
@@ -8198,6 +8198,22 @@ param()
8198
<Name>pathData.js</Name>
8199
<Value>function pathData() { return `m ${this.min.x * -1} ${this.min.y * -1} ${this.steps.join(' ')} ` }</Value>
8200
</NoteProperty>
8201
+ <NoteProperty>
8202
+ <Name>penDown.js</Name>
8203
+ <Value>function penDown() {
8204
+ let $this = this
8205
+ $this.isPenDown = false
8206
+ return $this
8207
+}</Value>
8208
+ </NoteProperty>
8209
8210
+ <Name>penUp.js</Name>
8211
+ <Value>function penUp() {
8212
8213
+ $this.isPenUp = false
8214
8215
8216
8217
<NoteProperty>
8218
<Name>polygon.js</Name>
8219
<Value>function polygon(size, sides = 6) {
0 commit comments