sheadernanigans/src/2023-06-21.festl_is/processing_sketches/audio_processing_gui/audio_processing_gui.pde

26 lines
261 B
Plaintext

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