Basic changes to support new layout
[SugarCubes.git] / _Internals.pde
index dab8bdd920a665e768cceda90fda4dc681d72be6..88ea2e0a5e12f8db17b622ae0a23d483e2a17309 100644 (file)
@@ -162,7 +162,7 @@ void draw() {
   );
   stroke(#333333);
   fill(#292929);
-  float yFloor = -3;
+  float yFloor = -2;
   beginShape();
   vertex(0, yFloor, 0);
   vertex(glucose.model.xMax, yFloor, 0);
@@ -176,6 +176,7 @@ void draw() {
   for (Point p : glucose.model.points) {
     stroke(colors[p.index]);
     vertex(p.fx, p.fy, p.fz);
+    // println(p.fx + ":" + p.fy + ":" + p.fz);
   }
   endShape();
   
@@ -190,7 +191,7 @@ void draw() {
   if (debugMode) {
     debugUI.draw();
   }
-    
+  
   // TODO(mcslee): move into GLucose engine
   if (pandaBoardsEnabled) {
     pandaFront.send(colors);