From: Alex Schmidt <alex@treefish.org>
Date: Mon, 18 Feb 2013 15:32:25 +0000 (+0100)
Subject: ...
X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/commitdiff_plain/f954319f1f2287cad4e5cc713c1c9d381c5ac2e4

...
---

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 <iostream>
 #include <math.h>
 
 vector< pair<int,culooks::window*> > 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();