diff --git a/voicegardens/static/voicegardens.js b/voicegardens/static/voicegardens.js index 84318fd..0c33c4a 100644 --- a/voicegardens/static/voicegardens.js +++ b/voicegardens/static/voicegardens.js @@ -258,11 +258,9 @@ class GeneratedShape { curveTightness(this.organicConstant); beginShape(); - curveVertex(this.xs[this.xs.length - 1], this.ys[this.ys.length - 1]); for (let i = 0; i < this.edges; i++) { curveVertex(this.xs[i], this.ys[i]); } - curveVertex(this.xs[0], this.ys[0]); endShape(CLOSE); }