X-Git-Url: http://git.megacz.com/?p=anneal.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fqfat%2FMeshViewer.java;h=e8f45867b6838a18d20f299a9b15adc505076e9f;hp=f24e2ad9c89033f858d9f58594adeec9208e4578;hb=4c6451ef747ae7ffc2aa8955e55254673ac49d16;hpb=2b09dab499516873839b9bdbc972c980829e9bac diff --git a/src/edu/berkeley/qfat/MeshViewer.java b/src/edu/berkeley/qfat/MeshViewer.java index f24e2ad..e8f4586 100644 --- a/src/edu/berkeley/qfat/MeshViewer.java +++ b/src/edu/berkeley/qfat/MeshViewer.java @@ -151,6 +151,7 @@ public class MeshViewer implements GLEventListener, MouseListener, MouseMotionLi public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height) { } public void displayChanged(GLAutoDrawable drawable, boolean modeChanged, boolean deviceChanged) { } public void display(GLAutoDrawable drawable) { + if (translations==null) return; glcanvas.setSize(f.getWidth(), f.getHeight() - 100); @@ -198,14 +199,18 @@ public class MeshViewer implements GLEventListener, MouseListener, MouseMotionLi gl.glColor4f(1,1,1,1); for(Matrix m : translations) { //if (v1.z==0 && v1.y==0) continue; + //if (i>0) continue; i++; - //if (i!=2&&i!=5) continue; + /* Point p = new Point(0, 0, 0).times(m); Vec v = new Vec(p.x, p.y, p.z); v = v.times((float)1.04); gl.glTranslatef(v.x, v.y, v.z); - draw(gl, false, safeTriangles); + */ + draw(gl, false, safeTriangles, m); + /* gl.glTranslatef(-v.x, -v.y, -v.z); + */ } //gl.glEnable(GL.GL_DEPTH_TEST); gl.glEnable (GL.GL_LIGHTING); @@ -213,7 +218,8 @@ public class MeshViewer implements GLEventListener, MouseListener, MouseMotionLi protected HashSet safeTriangles = new HashSet(); - private void draw(GL gl, boolean triangles, Iterable tris) { + private void draw(GL gl, boolean triangles, Iterable tris) { draw(gl, triangles, tris, Matrix.ONE); } + private void draw(GL gl, boolean triangles, Iterable tris, Matrix m) { float red = 0.0f; float green = 0.0f; float blue = 0.0f; @@ -235,7 +241,12 @@ public class MeshViewer implements GLEventListener, MouseListener, MouseMotionLi case 5: gl.glColor4f((float)0.25, (float)0.75, (float)0.75, (float)0.3); break; case 6: gl.glColor4f((float)0.75, (float)0.25, (float)0.75, (float)0.3); break; } - //gl.glColor4f((float)0.75, (float)0.25, (float)0.25, (float)0.3); + /* + if (t.e1().pair.t==null) gl.glColor4f((float)0.25, (float)0.25, (float)0.75, (float)0.3); + else if (t.e2().pair.t==null) gl.glColor4f((float)0.25, (float)0.25, (float)0.75, (float)0.3); + else if (t.e3().pair.t==null) gl.glColor4f((float)0.25, (float)0.25, (float)0.75, (float)0.3); + else gl.glColor4f((float)0.75, (float)0.25, (float)0.25, (float)0.3); + */ //gl.glBegin(GL.GL_LINES); if (triangles) { @@ -247,12 +258,12 @@ public class MeshViewer implements GLEventListener, MouseListener, MouseMotionLi gl.glDisable(GL.GL_LIGHTING); gl.glBegin(GL.GL_LINES); gl.glColor3f(1, 1, 1); - t.e1().p1.p.glVertex(gl); - t.e1().p2.p.glVertex(gl); - t.e2().p1.p.glVertex(gl); - t.e2().p2.p.glVertex(gl); - t.e3().p1.p.glVertex(gl); - t.e3().p2.p.glVertex(gl); + m.times(t.e1().p1.p).glVertex(gl); + m.times(t.e1().p2.p).glVertex(gl); + m.times(t.e2().p1.p).glVertex(gl); + m.times(t.e2().p2.p).glVertex(gl); + m.times(t.e3().p1.p).glVertex(gl); + m.times(t.e3().p2.p).glVertex(gl); gl.glEnd(); gl.glEnable(GL.GL_LIGHTING);