Created
May 22, 2023 16:44
-
-
Save march213/9fd3c75970bced7f96c8e75fece3eb04 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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