I really dig this one, more than yesterday's. The extra iterations make for a deep view.
I made this public, btw, so you can play with it yourself if you want. https://www.shadertoy.com/view/4X2fz3
do you have an idea how I disable the quil window closing on pressing escape?
Thanks! seems like this works: https://github.com/quil/quil/issues/417 Also randomly saw there is a github issue with the same question
You need to replicate this Processing snippet. Setting key variable to 0 is crucial here.
void keyPressed() {
if (key == ESC) {
key = 0;
}
}