Created
June 13, 2025 01:52
-
-
Save nnirror/fff6e53e275ddb0b00d091c5b2e52f25 to your computer and use it in GitHub Desktop.
facet sierpinski triangle
This file contains hidden or 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
$('s') | |
.run(() => { | |
for (var y = 0; y < 1024; y++) { | |
for (var x = 0; x < 1024; x++) { | |
this.data.push((x & y) == 0) | |
} | |
} | |
}) | |
.mix(0.5, () => { | |
this.reverse() | |
}) | |
.rotate(90) | |
.saveimg() | |
.once(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment