Skip to content

Commit

Permalink
chore: Adjust particle
Browse files Browse the repository at this point in the history
  • Loading branch information
ContentsViewer committed Aug 28, 2024
1 parent 1dd90ff commit 4180ebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dynamic-background.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ const LissajousCurve = () => {
p.y = (p.y + SQRT2) * 0.5;
// p.y = pow(p.y, 0.5) - 1.0;
// p.y = log(p.y + 1.0) - 0.5;
p.y = p.y * p.y * p.y * p.y * p.y;
p.y = p.y * p.y * p.y * p.y;
// float scale = 2.0;
// p *= 1.5;
Expand Down

0 comments on commit 4180ebd

Please sign in to comment.