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

23 lines
238 B
Plaintext

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