Appears to do nothing actually

This commit is contained in:
Luke Murphy 2020-02-03 10:41:29 +01:00
parent 39fba2aeb3
commit 46b4eaf7c5
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

View File

@ -258,11 +258,9 @@ class GeneratedShape {
curveTightness(this.organicConstant); curveTightness(this.organicConstant);
beginShape(); beginShape();
curveVertex(this.xs[this.xs.length - 1], this.ys[this.ys.length - 1]);
for (let i = 0; i < this.edges; i++) { for (let i = 0; i < this.edges; i++) {
curveVertex(this.xs[i], this.ys[i]); curveVertex(this.xs[i], this.ys[i]);
} }
curveVertex(this.xs[0], this.ys[0]);
endShape(CLOSE); endShape(CLOSE);
} }