From f954319f1f2287cad4e5cc713c1c9d381c5ac2e4 Mon Sep 17 00:00:00 2001 From: Alex Schmidt Date: Mon, 18 Feb 2013 16:32:25 +0100 Subject: [PATCH] ... --- culooks.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/culooks.cpp b/culooks.cpp index fe8fd00..b54eddd 100644 --- a/culooks.cpp +++ b/culooks.cpp @@ -1,6 +1,5 @@ #include "culooks.h" -#include #include vector< pair > culooks::Windows; @@ -106,7 +105,7 @@ namespace mygl if ( culooks::Windows.at(iwin).first == glutGetWindow() ) { return culooks::Windows.at(iwin).second; } - cerr << "Something terrible happened: Could not find window-id!" << endl; + //cerr << "Something terrible happened: Could not find window-id!" << endl; exit(1); } @@ -123,7 +122,7 @@ namespace mygl static void motionFunc(int x, int y) { - cout << x << endl; + //cout << x << endl; culooks::window *Win = getWin(); Win->cubes.at(rotcube[0]).az += rotcube[1] - x; @@ -186,7 +185,7 @@ namespace mygl static void displayFunc() { - cout << ":" << glutGetWindow() << endl; + //cout << ":" << glutGetWindow() << endl; culooks::window *Win = getWin(); -- 2.39.5