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-08a

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

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

    timeline = _template.getTimeline();
    timeline->setBPM(70);
    //timeline->addCurves("filter cutoff");
}

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

void ofApp::draw(){
    
}
    

Slow bassline rhythm

Sketch 2016-01-08a