diff --git a/lib/utils.dave.p5.js b/lib/utils.dave.p5.js index 0077055..9ffce0e 100644 --- a/lib/utils.dave.p5.js +++ b/lib/utils.dave.p5.js @@ -1,4 +1,4 @@ -// utils.dave.p5.js v.40 +// utils.dave.p5.js v.43 class Dave { // Short version of functions bellow. constructor() { @@ -206,13 +206,13 @@ class Turtle { show(){ this.push(); stroke('pink'); - this.penDown(); + this.down(); this.rt(10); - this.fd(-30); - this.fd(30); + this.fd(-10); + this.fd(10); this.lt(20); - this.fd(-30); - this.pot(); + this.fd(-10); + this.pop(); } color(c) { diff --git a/src/turtle.js b/src/turtle.js index 3909fe3..ad6764b 100644 --- a/src/turtle.js +++ b/src/turtle.js @@ -86,13 +86,13 @@ class Turtle { show(){ this.push(); stroke('pink'); - this.penDown(); + this.down(); this.rt(10); - this.fd(-30); - this.fd(30); + this.fd(-10); + this.fd(10); this.lt(20); - this.fd(-30); - this.pot(); + this.fd(-10); + this.pop(); } color(c) { diff --git a/version.txt b/version.txt index 425151f..920a139 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -40 +43