ソースを参照

Reduced console output when drawing graphs

Kenneth van Ewijk 11 年 前
コミット
d5b1113eb9
1 ファイル変更0 行追加10 行削除
  1. 0 10
      GUIboard.java

+ 0 - 10
GUIboard.java

@@ -204,22 +204,12 @@ public class GUIboard {
             {
             {
                 y = (int) ( (diff-max) / valpix);
                 y = (int) ( (diff-max) / valpix);
                 y = 31 - y;
                 y = 31 - y;
-                System.out.println("Y: " + y);
             }
             }
             for(int x2 = 0; x2 < 128; x2++)
             for(int x2 = 0; x2 < 128; x2++)
             {
             {
                 IO.writeShort(0x42, 1 << 12 | x2 << 5 | y );
                 IO.writeShort(0x42, 1 << 12 | x2 << 5 | y );
             }
             }
         }
         }
-        
-        /*
-        x = 0;
-        
-        for(int y2 = 0; y2 < 32; y2++)
-        {
-            IO.writeShort(0x42, 1 << 12 | x << 5 | y2 );
-        }
-        */
     }
     }
     
     
     private static ArrayList<Double> normalizeData(ArrayList<Double> data2 , double margin){
     private static ArrayList<Double> normalizeData(ArrayList<Double> data2 , double margin){