Skip to content

Instantly share code, notes, and snippets.

@nnirror
Created June 13, 2025 01:52
Show Gist options
  • Save nnirror/fff6e53e275ddb0b00d091c5b2e52f25 to your computer and use it in GitHub Desktop.
Save nnirror/fff6e53e275ddb0b00d091c5b2e52f25 to your computer and use it in GitHub Desktop.
facet sierpinski triangle
$('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