Fork me on GitHub
#quil
<
2021-10-06
>
gregoltsov12:10:04

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?

RollACaster13:10:13

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)

gregoltsov14:10:56

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