SketchPad

Some web space to sketch, doodle and make notes. Made using these tools. See more of my work here.

Daily Sketches

Sketch 2016-01-19a

        void ofApp::setup(){
    _template.setup(18, 60);
    manager = _template.getAudioUnitManager();
    

    synth.setup("Synth 1", AUDIOUNIT_MASSIVE);
    manager->createChain(&chain)
        .link(&synth)
        .toMixer();

    timeline = _template.getTimeline();
}

void ofApp::update(){
    synth.set(TALNoiseMaker_cutoff, timeline->getValue("filter cutoff"));
}

void ofApp::draw(){
    
}
    

Borrowed bassline from this tutorial

Sketch 2016-01-19a