sheadernanigans/src/2023-06-21.festl_is/processing_sketches/audio_processing_with_touchosc/audio_processing_with_touch...

20 lines
226 B
Plaintext

color bgColor = #333344;
void setup() {
size(900,900);
frameRate(30);
background(bgColor);
setupOsc();
setupAudioAnalysis();
}
void draw() {
background(bgColor);
drawOsc();
drawAudioAnalysis();
}