Created
June 14, 2020 13:25
-
-
Save lsei/18f248db41c90a8e2f343e6c480f7a4c to your computer and use it in GitHub Desktop.
Hydra 001
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
// By Lucas | |
// https://github.com/lsei | |
shape(100, .75, 0) | |
.repeat(10, 10) | |
.rotate(({time}) => time * 0.5) | |
.pixelate(({time}) => ((time * 10) % 100)) | |
.out(o1) | |
osc(100, .1, 1) | |
.rotate(45) | |
.mask(o1) | |
.out(o2) | |
solid(0, 0, 0).add(o2).out() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment