From c56ab31ea67e0350d16476bf99a98cf7c3358a6a Mon Sep 17 00:00:00 2001 From: Gene Kogan Date: Thu, 28 Jan 2016 20:05:02 +0530 Subject: [PATCH] removed obsolete key commands --- example-images/src/ofApp.cpp | 7 ------- 1 file changed, 7 deletions(-) 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); - }*/ } //--------------------------------------------------------------