Skip to content

Instantly share code, notes, and snippets.

@march213
Created May 22, 2023 16:44
Show Gist options
  • Save march213/9fd3c75970bced7f96c8e75fece3eb04 to your computer and use it in GitHub Desktop.
Save march213/9fd3c75970bced7f96c8e75fece3eb04 to your computer and use it in GitHub Desktop.
osc(20, -0.01, 1)
.repeat(5,5)
.scale(12, 0.9)
.kaleid(20)
.scrollY(() => Math.cos(time) * 0.4 - 0.5)
.scrollX(() => Math.sin(time) * 0.4 - 0.5)
.out(o0);
noise(15, 0.3)
.scale(0.001)
.out(o1);
src(o0)
.modulate(o1, 0.4)
.scale(1.3)
.rotate(() => Math.sin(time) * 0.5, 0.5)
.out(o2);
render(o2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment