No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with
2 additions and
6 deletions
-
voicegardens/static/voicegardens.js
|
@ -250,13 +250,9 @@ class GeneratedShape { |
|
|
|
|
|
|
|
|
for (let i = 0; i < this.edges; i++) { |
|
|
for (let i = 0; i < this.edges; i++) { |
|
|
this.startXs[i] = |
|
|
this.startXs[i] = |
|
|
this.centerX + |
|
|
this.centerX + cos(radians(this.rotAngle)) * this.radius + this.randomX; |
|
|
cos(radians(this.rotAngle) * i) * this.radius + |
|
|
|
|
|
this.randomX; |
|
|
|
|
|
this.startYs[i] = |
|
|
this.startYs[i] = |
|
|
this.centerY + |
|
|
this.centerY + sin(radians(this.rotAngle)) * this.radius + this.randomY; |
|
|
sin(radians(this.rotAngle) * i) * this.radius + |
|
|
|
|
|
this.randomY; |
|
|
|
|
|
this.rotAngle += 360 / this.edges; |
|
|
this.rotAngle += 360 / this.edges; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|