checkpoint
[anneal.git] / src / edu / berkeley / qfat / MeshViewer.java
index 73f22fb..356fbad 100644 (file)
@@ -38,7 +38,6 @@ public class MeshViewer extends Viewer {
 
     public MeshViewer(JFrame f) { super(f); }
 
-
     public void _display(GLAutoDrawable drawable, GL gl) {
 
         if (transforms==null) return;
@@ -126,7 +125,6 @@ public class MeshViewer extends Viewer {
         gl.glDisable(GL.GL_LIGHTING);
         gl.glShadeModel(GL.GL_FLAT);
 
-
         updateVisibility(gl, tile);
 
         Matrix projection = Matrix.getProjectionMatrix(gl);
@@ -146,7 +144,6 @@ public class MeshViewer extends Viewer {
         }
     }
 
-
     private void draw(GL gl, boolean triangles, Iterable<Mesh.T> tris) { draw(gl, triangles, tris, Matrix.ONE); }
     private void draw(GL gl, boolean triangles, Iterable<Mesh.T> tris, Matrix m) {
         float red = 0.0f;