SketchPad

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

Daily Sketches

Sketch 2015-08-16

        void ofApp::setup(){
    numLayers = 50;
    ofSetWindowShape(500, 500);
    gif.setup(100);
    masker.setup(numLayers, ISOLATE_LAYERS);
    masker.toggleOverlay();
    ofEnableSmoothing();
    ofSetWindowShape(1000, 1200);
}

void ofApp::update(){
    for(int i = 0; i < numLayers; i++) {
        masker.beginMask(i);
        {
            color = ofRandom(1) > 0.5 ? ofColor::white : ofColor::black;
            ofBackground(color);
        }
        masker.endMask(i);
        
        masker.beginLayer(i);
        {
            ofBackground(ofColor(ofColor::white, 0));
            size = ofMap(i, 0, numLayers, gif.doubleWidth, 330);
            if(i % 2 == 0) {
                ofSetColor(ofColor(ofColor::red, 100));
                size *= 0.8;
            } else {
                ofSetColor(ofColor::black);
            }
            gif.rotateAroundCenter(ofRandom(360));
            ofSetRectMode(OF_RECTMODE_CENTER);
            ofRect(gif.halfWidth, gif.halfHeight, size, size);
            ofSetRectMode(OF_RECTMODE_CORNER);
            
        }
        masker.endLayer(i);
    }
}

void ofApp::draw(){
    gif.begin();
    {
        ofSetColor(ofColor(ofColor::white, 100));
        ofRect(0, 0, gif.width, gif.height);
        masker.draw();

        ofSetRectMode(OF_RECTMODE_CENTER);
        ofSetColor(ofColor(ofColor::black, 210));
        ofRect(gif.halfWidth, gif.halfHeight, 360, 360);
        ofSetColor(ofColor::white);
        ofRect(gif.halfWidth, gif.halfHeight, 20, 20);
        ofSetRectMode(OF_RECTMODE_CORNER);
    }
    gif.endCaptureDraw();
    masker.drawOverlay();
}
    

Negative space.

Daily sketch