New Heron and GLucose jars, bring bass box back
[SugarCubes.git] / _Internals.pde
index 86c0661db5a43decec397ea751cce66a7468c1f9..5035ed59b6f8aeef7f4c7f232466929222924211 100644 (file)
@@ -187,9 +187,13 @@ void draw() {
   noFill();
   strokeWeight(2);
   beginShape(POINTS);
-  for (Point p : glucose.model.points) {
-    stroke(colors[p.index]);
-    vertex(p.fx, p.fy, p.fz);
+  // TODO(mcslee): restore when bassBox/speakers are right again
+  // for (Point p : glucose.model.points) {
+  for (Cube cube : glucose.model.cubes) {
+    for (Point p : cube.points) {
+      stroke(colors[p.index]);
+      vertex(p.fx, p.fy, p.fz);
+    }
   }
   endShape();