checkpoint
[anneal.git] / src / edu / berkeley / qfat / Main.java
index 7f99039..9ba230d 100644 (file)
@@ -148,36 +148,36 @@ public class Main implements GLEventListener, MouseListener, MouseMotionListener
 
 
         // top
-        tile.newT(ltf, mtf, mtn);
-        tile.newT(mtn, ltn, ltf);
-        tile.newT(mtf, rtf, rtn);
-        tile.newT(rtn, mtn, mtf);
+        tile.newT(ltf, mtf, mtn, null);
+        tile.newT(mtn, ltn, ltf, null);
+        tile.newT(mtf, rtf, rtn, null);
+        tile.newT(rtn, mtn, mtf, null);
 
         // bottom (swap normals)
-        tile.newT(mbf, lbf, mbn);
-        tile.newT(lbn, mbn, lbf);
-        tile.newT(rbf, mbf, rbn);
-        tile.newT(mbn, rbn, mbf);
+        tile.newT(mbf, lbf, mbn, null);
+        tile.newT(lbn, mbn, lbf, null);
+        tile.newT(rbf, mbf, rbn, null);
+        tile.newT(mbn, rbn, mbf, null);
         
         // left
-        tile.newT(ltf, ltn, lbn);
-        tile.newT(lbn, lbf, ltf);
+        tile.newT(ltf, ltn, lbn, null);
+        tile.newT(lbn, lbf, ltf, null);
 
         // right (swap normals)
-        tile.newT(rtn, rtf, rbn);
-        tile.newT(rbf, rbn, rtf);
+        tile.newT(rtn, rtf, rbn, null);
+        tile.newT(rbf, rbn, rtf, null);
 
         // front
-        tile.newT(ltn, mtn, mbn);
-        tile.newT(ltn, mbn, lbn);
-        tile.newT(mtn, rtn, rbn);
-        tile.newT(mtn, rbn, mbn);
+        tile.newT(ltn, mtn, mbn, null);
+        tile.newT(ltn, mbn, lbn, null);
+        tile.newT(mtn, rtn, rbn, null);
+        tile.newT(mtn, rbn, mbn, null);
 
         // back
-        tile.newT(mtf, ltf, mbf);
-        tile.newT(mbf, ltf, lbf);
-        tile.newT(rtf, mtf, rbf);
-        tile.newT(rbf, mtf, mbf);
+        tile.newT(mtf, ltf, mbf, null);
+        tile.newT(mbf, ltf, lbf, null);
+        tile.newT(rtf, mtf, rbf, null);
+        tile.newT(rbf, mtf, mbf, null);
 
         for(Matrix m : translations) {
             for(Mesh.T t1 : tile) {