From b81409be3b3de07c5ee0d425e5b0d5d773d97810 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Tue, 13 Sep 2016 08:55:17 +0300 Subject: [PATCH] Clean up couts in TextureMappingState --- src/Application/States/TextureMappingState.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Application/States/TextureMappingState.cpp b/src/Application/States/TextureMappingState.cpp index cdc878e..8d55fa3 100644 --- a/src/Application/States/TextureMappingState.cpp +++ b/src/Application/States/TextureMappingState.cpp @@ -81,8 +81,6 @@ void TextureMappingState::onKeyPressed(Application * app, ofKeyEventArgs & args) } void TextureMappingState::onBackgroundPressed(Application * app, GuiBackgroundEvent & e){ - cout << "TextureMappingState::onBackgroundPressed()" << endl; - app->getCmdManager()->exec( new DeselectTexCoordCmd(app->getGui()->getTextureEditor())); @@ -100,8 +98,6 @@ void TextureMappingState::onMousePressed(Application * app, ofMouseEventArgs & a } void TextureMappingState::onMouseReleased(Application * app, ofMouseEventArgs & args){ - cout << "TextureMappingState::onMouseReleased()" << endl; - _bTranslateCanvas = false; _clickCanvasTranslate = _canvasTranslate; @@ -126,12 +122,10 @@ void TextureMappingState::onMouseDragged(Application * app, ofMouseEventArgs & a } ofPoint TextureMappingState::getTranslation(){ - cout << "TextureMappingState::getTranslation()" << endl; return _canvasTranslate; } void TextureMappingState::setTranslation(ofPoint p){ - cout << "TextureMappingState::setTranslation()" << endl; _canvasTranslate = p; _clickCanvasTranslate = p; }