diff --git a/example-images/src/ofApp.cpp b/example-images/src/ofApp.cpp index 2e21baa..f448b11 100644 --- a/example-images/src/ofApp.cpp +++ b/example-images/src/ofApp.cpp @@ -71,13 +71,6 @@ void ofApp::keyPressed(int key){ float theta = ofMap(ofGetMouseY(), 0, ofGetHeight(), 0, TWO_PI); imagePoints = tsne.run(encodings, 2, perplexity, theta); } - /* - if (key==OF_KEY_UP) { - zoom = ofClamp(zoom + 0.25, 1.0, 50.0); - } - else if (key==OF_KEY_DOWN) { - zoom = ofClamp(zoom - 0.25, 1.0, 50.0); - }*/ } //--------------------------------------------------------------