checkpoint
[anneal.git] / src / edu / berkeley / qfat / Mesh.java
1 package edu.berkeley.qfat;
2 import java.awt.*;
3 import java.util.*;
4 import java.awt.event.*;
5 import javax.swing.*;
6 import javax.media.opengl.*;
7 import javax.media.opengl.glu.*;
8 import edu.berkeley.qfat.geom.*;
9 import edu.berkeley.qfat.geom.HasBindingGroup;
10 import edu.wlu.cs.levy.CG.KDTree;
11 import edu.berkeley.qfat.geom.Point;
12 import com.infomatiq.jsi.IntProcedure;
13
14 // EDGES RUN COUNTER-CLOCKWISE
15
16 public class Mesh implements Iterable<Mesh.T> {
17
18     public static final float EPSILON = (float)0.0001;
19     public static final Random random = new Random();
20
21     private RTree<T>         triangles = new RTree<T>();
22     private PointSet<Vertex> vertices  = new PointSet<Vertex>();
23
24     public boolean option_wireframe    = false;
25     public boolean option_errorNormals = false;
26     public boolean option_selectable   = true;
27
28     public void render(GL gl, Matrix m) {
29         if (option_wireframe) {
30             gl.glDisable(GL.GL_LIGHTING);
31             gl.glBegin(GL.GL_LINES);
32             gl.glColor3f(1, 1, 1);
33             for (T t : this) {
34                 // fixme used to be .goodp
35                 m.times(t.e1().v1.p).glVertex(gl);
36                 m.times(t.e1().v2.p).glVertex(gl);
37                 m.times(t.e2().v1.p).glVertex(gl);
38                 m.times(t.e2().v2.p).glVertex(gl);
39                 m.times(t.e3().v1.p).glVertex(gl);
40                 m.times(t.e3().v2.p).glVertex(gl);
41             }
42             gl.glEnd();
43             gl.glEnable(GL.GL_LIGHTING);
44             return;
45         }
46         for(T t : this) {
47             gl.glColor4f((float)(0.25+(0.05*t.color)),
48                          (float)(0.25+(0.05*t.color)),
49                          (float)(0.75+(0.05*t.color)),
50                          (float)0.3); 
51             /*
52             if (t.red) {
53             gl.glColor4f((float)(0.75+(0.05*t.color)),
54                          (float)(0.25+(0.05*t.color)),
55                          (float)(0.25+(0.05*t.color)),
56                          (float)0.3); 
57             }
58             */
59             t.glTriangle(gl, m);
60         }
61         if (option_errorNormals)
62             for(T t : this)
63                 for(Mesh.Vertex p : new Mesh.Vertex[] { t.v1(), t.v2(), t.v3() }) {
64                     if (p.ok) {
65                         gl.glBegin(GL.GL_LINES);
66                         gl.glColor3f(1, 1, 1);
67                         p.p.glVertex(gl);
68                         p.p.plus(p.norm().times((float)p.error()*10)).glVertex(gl);
69                         gl.glEnd();
70                     }
71                 }
72     }
73
74     public boolean immutableVertices;
75     public Mesh    error_against      = null;
76     public double  error              = 0;
77
78     public Mesh(boolean immutableVertices) { this.immutableVertices = immutableVertices; }
79
80     public void makeVerticesImmutable() { this.immutableVertices = true; }
81     public float error() { return (float)error; }
82
83     public int size() { return vertices.size(); }
84     public Iterable<Vertex> vertices() { return vertices; }
85     public Iterator<T> iterator() { return triangles.iterator(); }
86
87     public void rebindPoints() {
88         // unbind all points
89         for(Mesh.T t : this) {
90             t.v1().unbind();
91             t.v2().unbind();
92             t.v3().unbind();
93         }
94         // ask edges to re-implement their bindings
95         for(Mesh.T t : this) {
96             t.e1().dobind();
97             t.e2().dobind();
98             t.e3().dobind();
99         }
100         System.out.println("rebound!");
101     }
102
103     public void transform(Matrix m) {
104         ArrayList<Vertex> set = new ArrayList<Vertex>();
105         for(Vertex v : vertices) set.add(v);
106         for(Vertex v : set) v.transform(m.times(v.p), true, null);
107         for(Vertex v : set) v.goodp = v.p;
108     }
109
110     public void rebuild() { /*vertices.rebuild();*/ }
111     public Vec diagonal() { return vertices.diagonal(); }
112     public Point centroid() { return vertices.centroid(); }
113     public Vertex nearest(Point p) { return vertices.nearest(p); }
114
115     /** compute the volume of the mesh */
116     public float volume() {
117         double total = 0;
118         for(T t : this) {
119             double area = t.area();
120             Vec origin_to_centroid = new Vec(new Point(0, 0, 0), t.centroid());
121             boolean facingAway = t.norm().dot(origin_to_centroid) > 0;
122             double height = Math.abs(t.norm().dot(origin_to_centroid));
123             total += ((facingAway ? 1 : -1) * area * height) / 3.0;
124         }
125         return (float)total;
126     }
127
128
129     public void subdivide() {
130         for (Vertex v : vertices()) v.original = true;
131         HashSet<E> edges = new HashSet<E>();
132         HashSet<E> flip = new HashSet<E>();
133         HashSet<T> tris = new HashSet<T>();
134         int count = 0;
135         for (T t : this) {
136             tris.add(t);
137             edges.add(t.e1());
138             edges.add(t.e2());
139             edges.add(t.e3());
140             count++;
141         }
142         System.out.println("triangles="+count);
143         count = 0;
144         for(E e : edges) {
145             if (e.destroyed || e.shattered) continue;
146             e.shatter().edge = true;
147             for(E ex : (Iterable<E>)e.getBoundPeers()) {
148                 Vertex m = nearest(ex.midpoint());
149                 m.edge = true;
150                 E e3 = ex.v1.getE(m).next;
151                 if (e3.v2.original)
152                     flip.add(e3);
153             }
154         }
155
156         int i=0;
157
158         for(E e : flip) {
159             e.flip();
160             System.out.println("flip!");
161             i++;
162         }
163
164         System.out.println("count="+count);
165
166         rebindPoints();
167         HashSet<Vertex> verts = new HashSet<Vertex>();
168         for(Vertex v : vertices()) verts.add(v);
169         for (Vertex v : verts)
170             v.clearWish();
171         for (Vertex v : verts) {
172             if (v.edge) {
173                 for(E e = v.e; e!=null; e=e.pair.next==v.e?null:e.pair.next) {
174                     if (e.v2.original) {
175                         v.wish(e.v2);
176                         v.wish(e.v2);
177                         v.wish(e.v2);
178                         v.wish(e.v2);
179                     }
180                 }
181                 for(E e = v.e; e!=null; e=e.pair.next==v.e?null:e.pair.next) {
182                     for(E e2 = e.v2.e; e2!=null; e2=e2.pair.next==e.v2.e?null:e2.pair.next) {
183                         if (e2.v2.original) {
184                             v.wish(e.v2);
185                         }
186                     }
187                 }
188             }
189         }
190         for (Vertex v : verts)
191             v.grantWish();
192         System.out.println("-------------------------------------------------------------------");
193         /*
194         for (Vertex v : verts) {
195             if (v.original) {
196                 int n=0;
197                 for(E e = v.e; e!=null; e=e.pair.next==v.e?null:e.pair.next) {
198                     n++;
199                     v.wish(e.midpoint());
200                     v.wish(e.midpoint());
201                     v.wish(e.next.pair.t.centroid());
202                 }
203                 v.avgWish();
204                 v.wishes = 3;
205                 for(int j=0; j<n-3; j++)
206                     v.wish(v.getPoint());
207             }
208         }
209         for (Vertex v : verts)
210             v.avgWish();
211         for (Vertex v : verts)
212             v.grantWish();
213         */
214     }
215
216     // Vertexices //////////////////////////////////////////////////////////////////////////////
217
218     /** a vertex in the mesh */
219     public final class Vertex extends HasQuadric implements Visitor {
220         public Point p, goodp;
221         public Point oldp;
222         E e;                // some edge *leaving* this point
223
224         public boolean original = false;
225         public boolean edge = false;
226         public boolean face = false;
227
228         private int wishes = 0;
229         private Point wish = Point.ZERO;
230         public void clearWish() { wishes = 0; wish = Point.ZERO; }
231         public void wish(HasPoint hp) {
232             Point p = hp.getPoint();
233             wishes++;
234             wish = new Point(wish.x+p.x, wish.y+p.y, wish.z+p.z);
235         }
236         public void grantWish() {
237             for(Vertex v : (Iterable<Vertex>)getBoundPeers()) {
238                 if (v==this) continue;
239                 if (v.wishes==0) continue;
240                 Point p = this.getBindingMatrix(v).times(v.wish.minus(Point.ZERO).div(v.wishes).plus(Point.ZERO));
241                 wish = p.minus(Point.ZERO).times(v.wishes).plus(wish);
242                 wishes += v.wishes;
243                 v.clearWish();
244             }
245             if (wishes==0) return;
246             Vec d = wish.minus(Point.ZERO).div(wishes).plus(Point.ZERO).minus(getPoint());
247             move(d, false);
248             clearWish();
249         }
250         public void avgWish() {
251             if (wishes==0) return;
252             wish = wish.minus(Point.ZERO).div(wishes).plus(Point.ZERO);
253             wishes = 1;
254         }
255
256         private boolean illegal = false;
257
258         public boolean visible = false;
259
260         public Point getPoint() { return p; }
261         public float error() { return olderror; }
262
263         private Vertex(Point p) {
264             this.p = p;
265             this.goodp = p;
266             this.oldp = p;
267             if (vertices.get(p) != null) throw new Error();
268             vertices.add(this);
269         }
270
271         public void reinsert() {
272             vertices.remove(this);
273             vertices.add(this);
274             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) e.t.reinsert();
275         }
276
277         // the average of all adjacent points
278         public Point recenter() {
279             int count = 0;
280             Vec vec = Vec.ZERO;
281             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) {
282                 vec = vec.plus(e.getOther(this).getPoint().minus(Point.ZERO));
283                 count++;
284             }
285             return Point.ZERO.plus(vec.div(count));
286         }
287
288         public float olderror = 0;
289         public void setError(float nerror) {
290             error -= olderror;
291             olderror = nerror;
292             error += olderror;
293         }
294
295         /*
296         public Vertex hack(GL gl, Point mouse) {
297             double dist = Double.MAX_VALUE;
298             Vertex cur = null;
299             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) {
300                 Vertex v = e.getOther(this);
301                 double dist2 = v.getPoint().glProject(gl).distance(mouse);
302                 if ((cur==null || dist2 < dist) && v.visible) {
303                     dist = dist2;
304                     cur = v;
305                 }
306             }
307             return cur;
308         }
309         */
310
311         public float averageTriangleArea() {
312             int count = 0;
313             float ret = 0;
314             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) {
315                 ret += e.t.area();
316                 count++;
317             }
318             return ret/count;
319         }
320         public float averageEdgeLength() {
321             int count = 0;
322             float ret = 0;
323             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) {
324                 ret += e.length();
325                 count++;
326             }
327             return ret/count;
328         }
329
330         public Matrix _recomputeFundamentalQuadric() {
331             Matrix m = Matrix.ZERO;
332             int count = 0;
333             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) {
334                 m = m.plus(e.t.norm().fundamentalQuadric(e.t.centroid()));
335                 count++;
336             }
337             if (count > 0) {
338                 m = m.plus(norm().fundamentalQuadric(this.p).times(count));
339                 count *= 2;
340             }
341             return m.times(1/(float)count);
342         }
343
344         public HasQuadric nearest() { return error_against==null ? null : error_against.vertices.nearest(p, this); }
345         public void computeError() {
346             if (error_against==null) return;
347             if (nearest_in_other_mesh == null && nearest()==null) return;
348             float nerror =
349                 nearest_in_other_mesh != null
350                 ? nearest_in_other_mesh.fundamentalQuadric().preAndPostMultiply(p)
351                 : nearest().fundamentalQuadric().preAndPostMultiply(p);
352             if (quadric_count != 0)
353                 nerror = (nerror + quadric.preAndPostMultiply(p))/(quadric_count+1);
354
355             if (!immutableVertices && quadric_count == 0) {
356                 //nerror = Math.max(nerror, 0.4f);
357                 //nerror *= 2;
358             }
359             //System.out.println(nerror);
360             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) {
361                 double ang = e.dihedralAngle();
362                 if (ang > Math.PI) throw new Error();
363                 if (ang < -Math.PI) throw new Error();
364                 float minangle = (float)(Math.PI * 0.8);
365                 //nerror += ((ang / Math.PI)*(ang/Math.PI)) * e.length() * 0.05;
366
367                 nerror += (1-e.t.quality())*0.0001;
368                 if (ang > minangle) nerror += (ang - minangle);
369
370                 //System.out.println(((ang / Math.PI)*(ang/Math.PI)) * 0.000001);
371                 /*
372                 if (e.t.aspect() < 0.2) {
373                     nerror += (0.2-e.t.aspect()) * 10;
374                 }
375                 */
376             }
377             if (!immutableVertices) {
378                 Vertex n = (Vertex)nearest();
379                 float d = norm().dot(n.norm());
380                 if (d > 1 || d < -1) throw new Error();
381                 if (d >= 0) {
382                     nerror *= (2.0f - d);
383                 } else {
384                     nerror += 0.0003 * (2.0f + d);
385                     nerror *= (2.0f + d);
386                 }
387             }
388
389             setError(nerror);
390         }
391
392         public boolean move(Vec vv, boolean ignoreProblems) {
393
394             boolean good = true;
395
396             //     t1' = M * t1
397             //     t2' = t2.getMatrix(t1) * t1'
398             //     t2' = t2.getMatrix(t1) * M * t1
399             //     t1 =     t1.getMatrix(t2) * t2
400             // M * t1 = M * t1.getMatrix(t2) * t2
401
402             if (bindingGroup!=null && this != bindingGroup.getMaster()) {
403                 Matrix m2 = getBindingMatrix(bindingGroup.getMaster());
404                 Vec v2 = m2.times(vv.plus(getPoint())).minus(m2.times(getPoint()));
405                 return ((Vertex)bindingGroup.getMaster()).move(v2, ignoreProblems);
406             }
407
408             Point op = this.p;
409             Point pp = vv.plus(getPoint());
410             if (bindingGroup != null) {
411                 /*
412                 for(int i=0; i<20 ; i++) {
413                     Point v2 = getConstraint().times(pp);
414                     pp = pp.midpoint(v2);
415                     //System.out.println(m.minus(m2));
416                 }
417             */
418                 //pp = getConstraint().times(pp);
419             }
420             //pp = pp.minus(op).norm().times(vv.mag()).plus(op);
421             ok = false;
422             Point pt = pp;
423             for(Vertex v : (Iterable<Vertex>)getBoundPeers()) {
424                 Point pt2 = v.getBindingMatrix(this).times(pt);
425                 /*
426                 if (Math.abs( v.p.minus(pt2).mag() / pt.minus(op).mag() ) > 5)
427                     throw new Error(v.p+" "+pt2+"\n"+op+" "+pt+"\n"+v.getBindingMatrix(this));
428                 if (Math.abs( v.p.minus(pt2).mag() / pt.minus(op).mag() ) < 1/5) throw new Error();
429                 */
430                 good &= v.transform(pt2, ignoreProblems, v.getBindingMatrix(this));
431             }
432
433             if (!good && !ignoreProblems) {
434                 for(Vertex v : (Iterable<Vertex>)getBoundPeers()) 
435                     v.transform(v.oldp, true, null);
436             }
437
438             for(Vertex v : (Iterable<Vertex>)getBoundPeers())
439                 v.recomputeFundamentalQuadricIfNeighborChanged();
440             for(Vertex v : (Iterable<Vertex>)getBoundPeers())
441                 v.reComputeErrorAround();
442             ok = true;
443             return good;
444         }
445         public boolean ok = true;
446
447         /** does NOT update bound pairs! */
448         private boolean transform(Point newp, boolean ignoreProblems, Matrix yes) {
449             this.oldp = this.p;
450             if (immutableVertices) throw new Error();
451
452             unApplyQuadricToNeighbor();
453
454             boolean illegalbefore = illegal;
455             illegal = false;
456             /*
457             if (this.p.minus(newp).mag() > 0.1 && !ignoreProblems) {
458                 try {
459                     throw new Exception(""+this.p.minus(newp).mag()+" "+ignoreProblems+" "+yes);
460                 } catch(Exception e) {
461                     e.printStackTrace();
462                 }
463                 illegal = true;
464             }
465             */
466
467             this.p = newp;
468             reinsert();
469             applyQuadricToNeighbor();
470
471             if (!ignoreProblems) {
472                 checkLegality();
473             }
474             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next)
475                 e.v2.quadricStale = true;
476             return !illegal || (illegalbefore && illegal);
477         } 
478
479         public void checkLegality() {
480             /*
481             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) {
482                 if (Math.abs(e.dihedralAngle()) > (Math.PI * 0.9) ||
483                     Math.abs(e.next.dihedralAngle()) > (Math.PI * 0.9)) illegal = true;
484                 if (e.t.aspect() < 0.2) illegal = true;
485             }
486             */
487             if (!illegal) triangles.range(oldp, this.p, (Visitor<T>)this);
488         }
489
490         public void reComputeErrorAround() {
491             reComputeError();
492             if (nearest_in_other_mesh != null)
493                 nearest_in_other_mesh.reComputeError();
494             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next)
495                 e.v2.reComputeError();
496         }
497
498         public boolean visit(Object o) {
499             if (o instanceof Vertex)
500                 return ((Vertex)o).e != null && ((Vertex)o).norm().dot(Vertex.this.norm()) >= 0;
501             T t = (T)o;
502             if (illegal) return false;
503             for(E e = Vertex.this.e; e!=null; e=e.pair.next==Vertex.this.e?null:e.pair.next) {
504                 if (!t.has(e.v1) && !t.has(e.v2) && e.intersects(t)) { illegal = true; }
505                 if (e.t != null) {
506                     if (!e.t.has(t.e1().v1) && !e.t.has(t.e1().v2) && t.e1().intersects(e.t)) { illegal = true; }
507                     if (!e.t.has(t.e2().v1) && !e.t.has(t.e2().v2) && t.e2().intersects(e.t)) { illegal = true; }
508                     if (!e.t.has(t.e3().v1) && !e.t.has(t.e3().v2) && t.e3().intersects(e.t)) { illegal = true; }
509                 }
510             }
511             return !illegal;
512         }
513
514         public E getEdge() { return e; }
515         public E getFreeIncident() {
516             E ret = getFreeIncident(e, e);
517             if (ret != null) return ret;
518             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next)
519                 System.out.println(e + " " + e.t);
520             throw new Error("unable to find free incident to " + this);
521         }
522
523         public E getFreeIncident(E start, E before) {
524             for(E e = start; e!=null; e=e.pair.next==before?null:e.pair.next)
525                 if (e.pair.v2 == this && e.pair.t == null && e.pair.next.t == null)
526                     return e.pair;
527             return null;
528         }
529
530         public E getE(Point v2) {
531             Vertex v = vertices.get(v2);
532             if (v==null) return null;
533             return getE(v);
534         }
535         public E getE(Vertex v2) {
536             if (this.e!=null && this!=this.e.v1 && this!=this.e.v2) throw new RuntimeException();
537             int i=0;
538             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) {
539                 if (e.v1 == this && e.v2 == v2) return e;
540                 i++;
541                 e.sanity();
542                 if (e.destroyed) throw new RuntimeException("fark " + i + " " + e.prev + " " + (e.prev.next==e) + " " + e.prev.destroyed);
543             }
544             return null;
545         }
546
547         private void glNormal(GL gl) {
548             Vec norm = norm();
549             gl.glNormal3f(norm.x, norm.y, norm.z);
550         }
551         public Vec norm() {
552             Vec norm = new Vec(0, 0, 0);
553             for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next)
554                 if (e.t != null)
555                     norm = norm.plus(e.t.norm().times((float)e.prev.angle()));
556             return norm.norm();
557         }
558
559         public void bindTo(Vertex p) { bindTo(Matrix.ONE, p); }
560     }
561
562
563     /** [UNIQUE] an edge */
564     public final class E extends HasBindingGroup implements Comparable<E> {
565
566         public void sanity() {
567             if (destroyed) return;
568             if (pair!=null && (pair.v1!=v2 || pair.v2!=v1)) throw new RuntimeException();
569             if (next!=null && next.v1!=v2) throw new RuntimeException();
570             if (prev!=null && prev.v2!=v1) throw new RuntimeException();
571         }
572
573         public final Vertex v1, v2;
574         T t;     // triangle to our "left"
575         E prev;  // previous half-edge
576         E next;  // next half-edge
577         E pair;  // partner half-edge
578         boolean shattered = false;
579
580         public boolean intersects(T t) { return t.intersects(v1.p, v2.p); }
581
582         public Segment getSegment() { return new Segment(v1.getPoint(), v2.getPoint()); }
583
584         public void flip() {
585             // FIXME: coplanarity check needed
586             if (destroyed) return;
587             for (E e : (Iterable<E>)getBoundPeers()) {
588                 if (!e.pair.isBoundTo(pair)) throw new RuntimeException("cannot flip!");
589             }
590             Vertex v1 = t.getOtherVertex(this);
591             Vertex v2 = pair.t.getOtherVertex(pair);
592             destroy();
593             pair.destroy();
594             T t1 = newT(v1, v2, this.v2);
595             T t2 = newT(v2, v1, this.v1);
596             t1.e1().sanity();
597             t1.e2().sanity();
598             t1.e3().sanity();
599             t2.e1().sanity();
600             t2.e2().sanity();
601             t2.e3().sanity();
602
603             for (E e : (Iterable<E>)getBoundPeers()) {
604                 if (e==this) continue;
605                 if (e.destroyed) continue;
606                 Vertex v1e = e.t.getOtherVertex(e);
607                 Vertex v2e = e.pair.t.getOtherVertex(e.pair);
608                 e.destroy();
609                 e.pair.destroy();
610                 if (v1e.getE(v2e)!=null) throw new RuntimeException();
611                 newT(v1e, v2e, e.v2).red = true;
612                 newT(v2e, v1e, e.v1).red = true;
613                 v2e.getE(v1e).bindTo(e.getBindingMatrix(this), v1.getE(v2));
614                 v1e.getE(v2e).bindTo(e.pair.getBindingMatrix(this.pair), v2.getE(v1));
615             }
616
617         }
618
619         public void bindingGroupChanged(edu.berkeley.qfat.geom.BindingGroup newBindingGroup_) {
620
621             edu.berkeley.qfat.geom.BindingGroup<E> newBindingGroup =
622                 (edu.berkeley.qfat.geom.BindingGroup<E>)newBindingGroup_;
623             if (newBindingGroup==null) return;
624             if (this==newBindingGroup.getMaster()) return;
625             HashSet<E> nbg = new HashSet<E>();
626             for(E eother : (Iterable<E>)newBindingGroup) nbg.add(eother);
627             for(E eother : nbg) {
628                 if (next==null || prev==null) continue;
629                 if (eother.next==null || eother.prev==null) continue;
630
631                 if (next.isBoundTo(eother.pair.prev.pair) && !prev.isBoundTo(eother.pair.next.pair))
632                     prev.bindTo(next.getBindingMatrix(eother.pair.prev.pair), eother.pair.next.pair);
633                 if (!next.isBoundTo(eother.pair.prev.pair) && prev.isBoundTo(eother.pair.next.pair))
634                     next.bindTo(prev.getBindingMatrix(eother.pair.next.pair), eother.pair.prev.pair);
635
636                 /*
637                 if (next.isBoundTo(eother.prev) && !prev.isBoundTo(eother.next))
638                     prev.bindTo(next.getBindingMatrix(eother.prev), eother.next);
639                 if (!next.isBoundTo(eother.prev) && prev.isBoundTo(eother.next))
640                     next.bindTo(prev.getBindingMatrix(eother.next), eother.prev);
641                 */
642                 if (next.isBoundTo(eother.next) && !prev.isBoundTo(eother.prev))
643                     prev.bindTo(next.getBindingMatrix(eother.next), eother.prev);
644                 if (!next.isBoundTo(eother.next) && prev.isBoundTo(eother.prev))
645                     next.bindTo(prev.getBindingMatrix(eother.prev), eother.next);
646             }
647
648         }
649
650         public float stretchRatio() {
651             Vertex nearest = error_against.nearest(midpoint());
652             float nearest_distance = midpoint().distance(nearest.p);
653             float other_distance =
654                 (v1.p.distance(error_against.nearest(v1.p).p)+
655                  v2.p.distance(error_against.nearest(v2.p).p))/2;
656             return nearest_distance/other_distance;
657         }
658         public float comparator() {
659             return length();
660         }
661         public int compareTo(E e) {
662             return e.comparator() > comparator() ? 1 : -1;
663         }
664         public void bindEdge(E e, Matrix m) {
665             _bindEdge(e, m);
666             pair._bindEdge(e.pair, m);
667         }
668         public void _bindEdge(E e, Matrix m) {
669             e = e.pair;
670             /*
671             //assumes edges are identical length at binding time
672             Vec reflectionPlaneNormal = e.v2.p.minus(e.v1.p).norm();
673             float a = reflectionPlaneNormal.x;
674             float b = reflectionPlaneNormal.y;
675             float c = reflectionPlaneNormal.z;
676             Matrix reflectionMatrix =
677                 new Matrix( 1-2*a*a,  -2*a*b,  -2*a*c, 0,
678                             -2*a*b,  1-2*b*b,  -2*b*c, 0,
679                             -2*a*c,   -2*b*c, 1-2*c*c, 0,
680                             0,       0,       0,       1);
681             m = m.times(Matrix.translate(e.midpoint().minus(Point.ORIGIN))
682                         .times(reflectionMatrix)
683                         .times(Matrix.translate(Point.ORIGIN.minus(e.midpoint()))));
684             System.out.println(reflectionPlaneNormal);
685             System.out.println("  " + v1.p + " " + m.times(e.v1.p));
686             System.out.println("  " + v2.p + " " + m.times(e.v2.p));
687             */
688             /*
689             if (m.times(e.v1.p).minus(v1.p).mag() > EPSILON) throw new Error();
690             if (m.times(e.v2.p).minus(v2.p).mag() > EPSILON) throw new Error();
691             */
692             this.bindTo(m, e);
693         }
694         
695         public void dobind() {
696             for(E e : (Iterable<E>)getBoundPeers()) {
697                 if (e==this) continue;
698                 v1.bindTo(getBindingMatrix(e), e.v1);
699                 v2.bindTo(getBindingMatrix(e), e.v2);
700                 e.v1.setConstraint(getConstraint());
701                 e.v2.setConstraint(getConstraint());
702             }
703         }
704
705         public Vertex shatter() {
706             if (shattered || destroyed) return nearest(midpoint());
707             shattered = true;
708             E first = null;
709             E firste = null;
710             E firstx = null;
711             E firstq = null;
712             for(E e : (Iterable<E>)getBoundPeers()) {
713                 E enext = e.next;
714                 E eprev = e.prev;
715                 E pnext = e.pair.next;
716                 E pprev = e.pair.prev;
717                 Point mid = e.midpoint();
718                 Vertex r = e.next.v2;
719                 Vertex l = e.pair.next.v2;
720                 if (!e.destroyed) {
721                     e.destroy();
722                     e.pair.destroy();
723                     newT(r.p, e.v1.p, mid,    null, 0);
724                     newT(r.p, mid,    e.v2.p, null, 0);
725                     newT(l.p, mid,    e.v1.p, null, 0);
726                     newT(l.p, e.v2.p, mid,    null, 0);
727                 }
728             }
729             for(E e : (Iterable<E>)getBoundPeers()) {
730                 Point mid = e.midpoint();
731                 if (first==null) {
732                     first = e.v1.getE(mid);
733                     firste = e;
734                     firstx = e.pair;
735                     firstq = e.v2.getE(mid).pair;
736                     continue;
737                 }
738                 e.v1.getE(mid).          bindTo(e.getBindingMatrix(firste), first);
739                 e.v1.getE(mid).pair.     bindTo(e.getBindingMatrix(firste), first.pair);
740                 e.v2.getE(mid).pair.     bindTo(e.getBindingMatrix(firste), firstq);
741                 e.v2.getE(mid).pair.pair.bindTo(e.getBindingMatrix(firste), firstq.pair);
742             }
743             /*
744             first.setConstraint(firste.getConstraint());
745             firstq.setConstraint(firste.getConstraint());
746             */
747             return nearest(midpoint());
748         }
749
750         public boolean destroyed = false;
751         public void destroy() {
752             if (destroyed) return;
753             destroyed = true;
754             pair.destroyed = true;
755
756             if (t != null) t.destroy();
757             t = null;
758
759             if (pair.t != null) pair.t.destroy();
760             pair.t = null;
761
762             if (next.t != null) next.t.destroy();
763             if (prev.t != null) prev.t.destroy();
764             next.t = null;
765             prev.t = null;
766
767             if (pair.next.t != null) pair.next.t.destroy();
768             if (pair.prev.t != null) pair.next.t.destroy();
769             pair.next.t = null;
770             pair.prev.t = null;
771
772             pair.prev.next = next;
773             next.prev = pair.prev;
774             prev.next = pair.next;
775             pair.next.prev = prev;
776
777             if (v1.e == this) v1.e = pair.next;
778             if (pair.v1.e == pair) pair.v1.e = next;
779
780             if (v2.e == this) throw new RuntimeException();
781             if (pair.v2.e == pair) throw new RuntimeException();
782
783             /*
784             next = pair;
785             prev = pair;
786             pair.next = this;
787             pair.prev = this;
788             */
789
790             /*
791             pair.prev = null;
792             pair.next = null;
793             next = null;
794             prev = null;
795             */
796
797             /*
798             sanity();
799             next.sanity();
800             prev.sanity();
801             pair.sanity();
802             */
803         }
804
805         private void sync() {
806             this.prev.next = this;
807             this.next.prev = this;
808             this.pair.pair = this;
809             if (this.next.v1 != v2) throw new Error();
810             if (this.prev.v2 != v1) throw new Error();
811             if (this.v1.e == null) this.v1.e = this;
812             if (!added) added = true;
813         }
814         private boolean added = false;
815
816         public T makeT(int colorclass) { return t==null ? (t = new T(this, colorclass)) : t; }
817
818         public double dihedralAngle() {
819             Vec v1 = t.norm().times(-1);
820             Vec v2 = pair.t.norm().times(-1);
821             double prod = v1.norm().dot(v2.norm());
822             prod = Math.min(1,prod);
823             prod = Math.max(-1,prod);
824             double ret = Math.acos(prod);
825             if (Double.isNaN(ret)) throw new Error("nan! " + prod);
826             return ret;
827         }
828
829         /** angle between this half-edge and the next */
830         public double angle() {
831             Vec v1 = next.v2.p.minus(this.v2.p);
832             Vec v2 = this.v1.p.minus(this.v2.p);
833             return Math.acos(v1.norm().dot(v2.norm()));
834         }
835
836         public Vertex getOther(Vertex v) {
837             if (this.v1 == v) return v2;
838             if (this.v2 == v) return v1;
839             throw new Error();
840         }
841
842         public void makeAdjacent(E e) {
843             if (this.next == e) return;
844             if (v2 != e.v1) throw new Error("cannot make adjacent -- no shared vertex: " + this + " " + e);
845             if (t != null || e.t != null) throw new Error("cannot make adjacent -- edges not both free " + t + " " + e.t);
846
847             E freeIncident = v2.getFreeIncident(e, this);
848
849             e.prev.next = freeIncident.next;
850             freeIncident.next.prev = e.prev;
851
852             freeIncident.next = this.next;
853             this.next.prev = freeIncident;
854             
855             this.next = e;
856             e.prev = this;
857
858             sync();
859             freeIncident.sync();
860         }
861
862         /** creates an isolated edge out in the middle of space */
863         public E(Point v1, Point v2) {
864             if (vertices.get(v1) != null) throw new Error();
865             if (vertices.get(v2) != null) throw new Error();
866             this.v1 = new Vertex(v1);
867             this.v2 = new Vertex(v2);
868             this.prev = this.next = this.pair = new E(this, this, this);
869             this.v1.e = this;
870             this.v2.e = this.pair;
871             sync();
872         }
873
874         /** adds a new half-edge from prev.v2 to v2 */
875         public E(E prev, Point p) {
876             Vertex v2;
877             v2 = vertices.get(p);
878             if (v2 == null) v2 = new Vertex(p);
879             this.v1 = prev.v2;
880             this.v2 = v2;
881             this.prev = prev;
882             if (prev.destroyed) throw new RuntimeException();
883             if (v2.getE(v1) != null) throw new Error();
884             if (v2.e==null) {
885                 this.next = this.pair = new E(this, this, prev.next);
886             } else {
887                 E q = v2.getFreeIncident();
888                 this.next = q.next;
889                 this.next.prev = this;
890                 E z = prev.next;
891                 this.prev.next = this;
892                 this.pair = new E(q, this, z);
893             }
894             if (v2.e==null) v2.e = this.pair;
895             sync();
896         }
897
898         /** adds a new half-edge to the mesh with a given predecessor, successor, and pair */
899         public E(E prev, E pair, E next) {
900             this.v1 = prev.v2;
901             this.v2 = next.v1;
902             if (prev.destroyed) throw new RuntimeException();
903             this.prev = prev;
904             this.next = next;
905             this.pair = pair;
906             sync();
907         }
908         public Point midpoint() { return new Point((v1.p.x+v2.p.x)/2, (v1.p.y+v2.p.y)/2, (v1.p.z+v2.p.z)/2); }
909         public boolean has(Vertex v) { return v==v1 || v==v2; }
910         public float length() { return v1.p.minus(v2.p).mag(); }
911         public String toString() { return v1+"->"+v2; }
912
913     }
914
915     public E makeE(Point p1, Point p2) {
916         Vertex v1 = vertices.get(p1);
917         Vertex v2 = vertices.get(p2);
918         if (v1 != null && v2 != null) {
919             E e = v1.getE(v2);
920             if (e != null) return e;
921             e = v2.getE(v1);
922             if (e != null) return e;
923         }
924         if (v1 != null) return new E(v1.getFreeIncident(), p2);
925         if (v2 != null) return new E(v2.getFreeIncident(), p1).pair;
926         return new E(p1, p2);
927     }
928     public boolean coalesce = false;
929     private static float round(float f) {
930         return Math.round(f*1000)/1000f;
931     }
932     public T newT(HasPoint v1, HasPoint v2, HasPoint v3) {
933         return newT(v1.getPoint(), v2.getPoint(), v3.getPoint(), null, 0);
934     }
935     public T newT(Point v1, Point v2, Point v3, Vec norm, int colorclass) {
936         if (coalesce) {
937
938             for(Vertex v : vertices) { if (v1.distance(v.p) < EPSILON) { v1 = v.p; break; } }
939             for(Vertex v : vertices) { if (v2.distance(v.p) < EPSILON) { v2 = v.p; break; } }
940             for(Vertex v : vertices) { if (v3.distance(v.p) < EPSILON) { v3 = v.p; break; } }
941             /*
942             v1 = new Point(round(v1.x), round(v1.y), round(v1.z));
943             v2 = new Point(round(v2.x), round(v2.y), round(v2.z));
944             v3 = new Point(round(v3.x), round(v3.y), round(v3.z));
945             */
946         }
947         if (norm != null) {
948             Vec norm2 = v3.minus(v1).cross(v2.minus(v1));
949             float dot = norm.dot(norm2);
950             //if (Math.abs(dot) < EPointSILON) throw new Error("dot products within evertsilon of each other: "+norm+" "+norm2);
951             if (dot < 0) { Point p = v1; v1=v2; v2 = p; }
952         }
953         E e12 = makeE(v1, v2);
954         E e23 = makeE(v2, v3);
955         E e31 = makeE(v3, v1);
956         while(e12.next != e23 || e23.next != e31 || e31.next != e12) {
957             e12.makeAdjacent(e23);
958             e23.makeAdjacent(e31);
959             e31.makeAdjacent(e12);
960         }
961         T ret = e12.makeT(colorclass);
962         if (e12.t == null) throw new Error();
963         if (e23.t == null) throw new Error();
964         if (e31.t == null) throw new Error();
965         return ret;
966     }
967
968     private int max_serial = 0;
969     /** [UNIQUE] a triangle (face) */
970     public final class T extends Triangle {
971         public final E e1;
972         public final int color;
973         public final int colorclass;
974
975         public boolean red = false;
976         public boolean old = false;
977
978         public final int serial = max_serial++;
979         public boolean occluded;
980
981         public Point shatter() {
982             if (destroyed) return null;
983             E e = e1();
984             
985             HashSet<E> forward = new HashSet<E>();
986             HashSet<E> backward = new HashSet<E>();
987             HashSet<E> both = new HashSet<E>();
988
989             for(E eb : (Iterable<E>)e.getBoundPeers()) {
990                 if (eb==e) continue;
991                 if (eb.next.isBoundTo(e.next) && eb.prev.isBoundTo(e.prev)) {
992                     forward.add(eb);
993                     both.add(eb);
994                 }
995                 if (eb.pair.next.pair.isBoundTo(e.prev) && eb.pair.prev.pair.isBoundTo(e.next)) {
996                     backward.add(eb.pair);
997                     both.add(eb.pair);
998                 }
999             }
1000
1001             Vertex v1 = e.t.v1();
1002             Vertex v2 = e.t.v2();
1003             Vertex v3 = e.t.v3();
1004             Point c = e.t.centroid();
1005             E e_next = e.next;
1006             E e_prev = e.prev;
1007             e.t.destroy();
1008             newT(v1, v2, c);
1009             newT(c,  v2, v3);
1010             newT(v3, v1, c);
1011
1012             // FIXME: forward too
1013             for(E ex : backward) {
1014                 Vertex v1x = ex.t.v1();
1015                 Vertex v2x = ex.t.v2();
1016                 Vertex v3x = ex.t.v3();
1017                 Point cx = ex.t.centroid();
1018                 E ex_next = ex.next;
1019                 E ex_prev = ex.prev;
1020                 ex.t.destroy();
1021                 newT(v1x, v2x, cx);
1022                 newT(cx,  v2x, v3x);
1023                 newT(v3x, v1x, cx);
1024
1025                 // FIXME: i have no idea if this is right
1026                 e.next.bindTo(e.getBindingMatrix(ex.pair), ex.prev);
1027                 e.prev.bindTo(e.getBindingMatrix(ex.pair), ex.next);
1028                 e.next.pair.bindTo(e.getBindingMatrix(ex.pair), ex.prev.pair);
1029                 e.prev.pair.bindTo(e.getBindingMatrix(ex.pair), ex.next.pair);
1030
1031                 e_next.next.bindTo(e_next.getBindingMatrix(ex_prev.pair), ex_prev.prev.pair);
1032                 e_next.prev.bindTo(e_next.getBindingMatrix(ex_prev.pair), ex_prev.next.pair);
1033
1034                 e_prev.next.bindTo(e_prev.getBindingMatrix(ex_next.pair), ex_next.prev.pair);
1035                 e_prev.prev.bindTo(e_prev.getBindingMatrix(ex_next.pair), ex_next.next.pair);
1036             }
1037
1038             /*
1039
1040             E first = null;
1041             E firste = null;
1042             E firstx = null;
1043             E firstq = null;
1044             for(E e : (Iterable<E>)getBoundPeers()) {
1045                 E enext = e.next;
1046                 E eprev = e.prev;
1047                 E pnext = e.pair.next;
1048                 E pprev = e.pair.prev;
1049                 Point mid = e.midpoint();
1050                 Vertex r = e.next.v2;
1051                 Vertex l = e.pair.next.v2;
1052                 if (!e.destroyed) {
1053                     e.destroy();
1054                     e.pair.destroy();
1055                     newT(r.p, e.v1.p, mid,    null, 0);
1056                     newT(r.p, mid,    e.v2.p, null, 0);
1057                     newT(l.p, mid,    e.v1.p, null, 0);
1058                     newT(l.p, e.v2.p, mid,    null, 0);
1059                 }
1060             }
1061             for(E e : (Iterable<E>)getBoundPeers()) {
1062                 Point mid = e.midpoint();
1063                 if (first==null) {
1064                     first = e.v1.getE(mid);
1065                     firste = e;
1066                     firstx = e.pair;
1067                     firstq = e.v2.getE(mid).pair;
1068                     continue;
1069                 }
1070                 e.v1.getE(mid).          bindTo(e.getBindingMatrix(firste), first);
1071                 e.v1.getE(mid).pair.     bindTo(e.getBindingMatrix(firste), first.pair);
1072                 e.v2.getE(mid).pair.     bindTo(e.getBindingMatrix(firste), firstq);
1073                 e.v2.getE(mid).pair.pair.bindTo(e.getBindingMatrix(firste), firstq.pair);
1074             }
1075             */
1076             /*
1077             first.setConstraint(firste.getConstraint());
1078             firstq.setConstraint(firste.getConstraint());
1079             */
1080             return null;
1081         }
1082
1083
1084         T(E e1, int colorclass) {
1085             this.e1 = e1;
1086             E e2 = e1.next;
1087             E e3 = e2.next;
1088             if (e1==e2 || e1==e3) throw new Error();
1089             if (e3.next!=e1) throw new Error();
1090             if (e1.t!=null || e2.t!=null || e3.t!=null) throw new Error("non-manifold surface or disagreeing normals");
1091             e1.t = this;
1092             e1.next.t = this;
1093             e1.next.next.t = this;
1094
1095             // FIXME: check for sealed/watertight surface once construction is complete (and infer normal(s)?)
1096
1097             int color = Math.abs(random.nextInt());
1098             while(true) {
1099                 color = color % 4;
1100                 if (e1().pair.t != null && color == e1().pair.t.color) { color++; continue; }
1101                 if (e2().pair.t != null && color == e2().pair.t.color) { color++; continue; }
1102                 if (e3().pair.t != null && color == e3().pair.t.color) { color++; continue; }
1103                 break;
1104             }
1105             this.color = color;
1106             this.colorclass = colorclass;
1107             triangles.add(this);
1108         }
1109         public E e1() { return e1; }
1110         public E e2() { return e1.next; }
1111         public E e3() { return e1.prev; }
1112         public Vertex v1() { return e1.v1; }
1113         public Vertex v2() { return e1.v2; }
1114         public Vertex v3() { return e1.next.v2; }
1115         public Point p1() { return e1.v1.p; }
1116         public Point p2() { return e1.v2.p; }
1117         public Point p3() { return e1.next.v2.p; }
1118         public boolean hasE(E e) { return e1==e || e1.next==e || e1.prev==e; }
1119         public boolean has(Vertex v) { return v1()==v || v2()==v || v3()==v; }
1120
1121         public Vertex getOtherVertex(E e) {
1122             if (!hasE(e)) throw new RuntimeException();
1123             if (!e.has(v1())) return v1();
1124             if (!e.has(v2())) return v2();
1125             if (!e.has(v3())) return v3();
1126             throw new RuntimeException();
1127         }
1128
1129         public void removeFromRTree() { triangles.remove(this); }
1130         public void addToRTree() { triangles.insert(this); }
1131         public void destroy() {
1132             if (e1 != null) {
1133                 e1.t = null;
1134                 e1.next.t = null;
1135                 e1.prev.t = null;
1136             }
1137             triangles.remove(this);
1138             destroyed = true;
1139         }
1140         public void reinsert() { triangles.remove(this); triangles.add(this); }
1141
1142         private boolean destroyed = false;
1143         public boolean destroyed() { return destroyed; }
1144
1145         public boolean shouldBeDrawn() {
1146
1147             if (e1().bindingGroupSize() <= 1) return false;
1148             if (e2().bindingGroupSize() <= 1) return false;
1149             if (e3().bindingGroupSize() <= 1) return false;
1150
1151             return true;
1152         }
1153
1154         public void glTriangle(GL gl, Matrix m) {
1155             gl.glPushName(serial);
1156             gl.glBegin(GL.GL_TRIANGLES);
1157             glVertices(gl, m);
1158             gl.glEnd();
1159             gl.glPopName();
1160         }
1161
1162         /** issue gl.glVertex() for each of the triangle's points */
1163         public void glVertices(GL gl, Matrix m) {
1164             if (!shouldBeDrawn()) return;
1165             super.glVertices(gl, m);
1166         }
1167     }
1168 }