Skip to content

Commit

Permalink
removed obsolete key commands
Browse files Browse the repository at this point in the history
  • Loading branch information
genekogan committed Jan 28, 2016
1 parent a1d976f commit c56ab31
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions example-images/src/ofApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}*/
}

//--------------------------------------------------------------
Expand Down

0 comments on commit c56ab31

Please sign in to comment.