quil

gregoltsov 2021-10-06T12:58:04.024400Z

are there any libraries to help with add some simple GUI to Quil sketches? Things like sliders etc? I know Processing has a https://processing.org/reference/libraries/#gui, but am not certain if we can use them in Quil?

RollACaster 2021-10-06T13:22:13.025800Z

I am not aware of gui library for quil. What I commonly do is render the sketch in the browser and use the input elements of the browser. (e.g. I did that here using the scroll bar https://github.com/rollacaster/steal-like-a-data-visualizer/blob/master/src/steal_like_a_data_visualizer/core.cljs)

gregoltsov 2021-10-06T14:54:56.026600Z

thanks @thsojka - sounds like I need to just switch to p5.js-based Quil 🙂 makes sense and thanks for the links and code sample!