mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 15:05:25 +00:00
play
This commit is contained in:
@@ -56,7 +56,7 @@ function drawSpiral(angle) {
|
||||
ctx.moveTo(cX, cY);
|
||||
const nColor = lerpRGB(startColor, endColor, Math.cos(rad(n / 2)));
|
||||
|
||||
const nAngle = n * angle + Math.sin(angle * (n - angle * 100) * 3);
|
||||
const nAngle = n * angle + Math.sin(angle * (n - angle * 100) * 2);
|
||||
const radius = distanceMultiplier * n;
|
||||
const xCoord = radius * Math.cos(nAngle) + centerX;
|
||||
const yCoord = radius * Math.sin(nAngle) + centerY;
|
||||
|
Reference in New Issue
Block a user