374f01299432928f43c83ee029d9f54854457816
[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.wlu.cs.levy.CG.KDTree;
10 import edu.berkeley.qfat.geom.Point;
11
12 public class Mesh implements Iterable<Mesh.T> {
13
14     public static float EPSILON = (float)0.0001;
15     public static Random random = new Random();
16
17     private PointSet<Vert> pointset = new PointSet<Vert>();
18
19     public Iterable<Vert> vertices() { return pointset; }
20
21     public Iterable<E> edges() {
22         return
23             new Iterable<E>() {
24             public Iterator<E> iterator() {
25                 // HACK
26                 HashSet<E> hse = new HashSet<E>();
27                 for(T t : Mesh.this) {
28                     hse.add(t.e1());
29                     hse.add(t.e2());
30                     hse.add(t.e3());
31                     hse.add(t.e1().pair);
32                     hse.add(t.e2().pair);
33                     hse.add(t.e3().pair);
34                 }
35                 return hse.iterator();
36             } };
37     }
38
39     public Iterator<T> iterator() {
40         for(Vert v : pointset)
41             if (v.e != null && v.e.t != null)
42                 return new FaceIterator(v);
43         return new FaceIterator();
44     }
45
46     public Mesh score_against = null;
47     public double score = 0;
48     public float score() { return (float)score; }
49
50     public int numedges = 0;
51     public float avgedge = 0;
52
53     public void unbind() {
54         for(Mesh.T t : this) {
55             t.v1().unbind();
56             t.v2().unbind();
57             t.v3().unbind();
58         }
59     }
60
61     public void bind() {
62         for(Mesh.T t : this) {
63             t.e1().dobind();
64             t.e2().dobind();
65             t.e3().dobind();
66         }
67     }
68
69     public float rescore() {
70         int num = 0;
71         double dist = 0;
72         HashSet<Vert> done = new HashSet<Vert>();
73         for(T t : this)
74             for(Vert p : new Vert[] { t.v1(), t.v2(), t.v3() }) {
75                 if (done.contains(p)) continue;
76                 done.add(p);
77                 p.rescore();
78             }
79         return (float)(dist/num);
80     }
81
82     public void transform(Matrix m) {
83         ArrayList<Vert> set = new ArrayList<Vert>();
84         for (Vert v : pointset)
85             set.add(v);
86         for(Vert v : set) v.transform(m);
87     }
88
89     public float volume() {
90         double total = 0;
91         for(T t : this) {
92             double area = t.area();
93             Vec origin_to_centroid = new Vec(new Point(0, 0, 0), t.centroid());
94             boolean facingAway = t.norm().dot(origin_to_centroid) > 0;
95             double height = Math.abs(t.norm().dot(origin_to_centroid));
96             total += ((facingAway ? 1 : -1) * area * height) / 3.0;
97         }
98         return (float)total;
99     }
100
101     public class BindingGroup {
102         public HashSet<E> es = new HashSet<E>();
103         public BindingGroup() { }
104         public BindingGroup(E e) {
105             es.add(e);
106         }
107         public void add(E e) {
108             if (e.bg != null) { merge(e.bg); return; }
109             es.add(e);
110             e.bg = this;
111         }
112         public void merge(BindingGroup bg) {
113             for(E e : bg.es) {
114                 e.bg = null;
115                 add(e);
116             }
117         }
118     }
119
120     public Vec diagonal() { return pointset.diagonal(); }
121     public Point centroid() { return pointset.centroid(); }
122     public Vert nearest(Point p) { return pointset.nearest(p); }
123
124     public final class Vert extends HasPoint {
125         public Point p;
126         E e;                // some edge *leaving* this point
127
128         Vert bound_to = this;
129         int watch_count;
130         float watch_x;
131         float watch_y;
132         float watch_z;
133         Vert watch;
134         Matrix binding = new Matrix();
135         float oldscore = 0;
136         boolean inserted = false;
137
138         public Point getPoint() { return p; }
139         private Vert(Point p) {
140             this.p = p;
141             if (pointset.get(p) != null) throw new Error();
142             pointset.add(this);
143         }
144         public float score() { return oldscore; }
145         public void unscore() {
146             if (watch == null) return;
147             watch.watch_x -= p.x;
148             watch.watch_y -= p.y;
149             watch.watch_z -= p.z;
150             watch.watch_count--;
151             if (watch.watch_count==0) {
152                 watch.watch_x = 0;
153                 watch.watch_y = 0;
154                 watch.watch_z = 0;
155             }
156             watch = null;
157         }
158         public Vert partner() { return watch==null ? this : watch; }
159         public Point watchback() { return watch_count==0 ? partner().p :
160                 new Point(watch_x/watch_count, watch_y/watch_count, watch_z/watch_count); }
161         public void rescore() {
162             if (score_against == null) return;
163
164             score -= oldscore;
165             oldscore = 0;
166
167             if (watch != null) unscore();
168             Vert po = this;
169             if (watch == null) {
170                 watch = score_against.nearest(po.p);
171
172                 // don't attract to vertices that face the other way
173                 if (watch.e == null || watch.norm().dot(norm()) < 0) {
174                     watch = null;
175                 } else {
176                     watch.watch_x += po.p.x;
177                     watch.watch_y += po.p.y;
178                     watch.watch_z += po.p.z;
179                     watch.watch_count++;
180                 }
181             }
182
183             double s1, s2;
184             if (watch_count==0) s1 = 0;
185             else                s1 = p.distance(watch_x/watch_count, watch_y/watch_count, watch_z/watch_count);
186             s2 = watch==null ? 0 : po.p.distance(watch.p);
187             oldscore = (float)(s1 + s2);
188             score += oldscore;
189         }
190
191         /** does NOT update bound pairs! */
192         public boolean transform(Matrix m) {
193             unscore();
194             try {
195                 if (pointset.get(this.p)==null) throw new Error();
196                 pointset.remove(this);
197                 float newx = m.a*p.x + m.b*p.y + m.c*p.z + m.d;
198                 float newy = m.e*p.x + m.f*p.y + m.g*p.z + m.h;
199                 float newz = m.i*p.x + m.j*p.y + m.k*p.z + m.l;
200                 this.p = new Point(newx, newy, newz);
201                 // FIXME: what if we move onto exactly where another point is?
202                 pointset.add(this);
203             } catch (Exception e) {
204                 throw new RuntimeException(e);
205             }
206             rescore();
207             boolean good = true;
208             /*
209             for(T t : this) {
210                 for(E e = this.e; ;) {
211                     if (e.intersects(t)) { good = false; break; }
212                     e = e.pair.next;
213                     if (e == this.e) break;
214                 }
215             }
216             */
217             /*
218                 if (t==this.t) continue;
219                 if (this.intersects(t)) good = false;
220             }
221             */
222             return good;
223         }
224         public boolean move(Vec v) {
225             Matrix m = new Matrix(v);
226             Vert p = this;
227             boolean good = true;
228             do {
229                 good &= p.transform(m);
230                 v = v.times(binding); // bleh wrong
231                 p = p.bound_to;
232             } while (p != this);
233             return good;
234         }
235
236         public E getFreeIncident() {
237             E ret = getFreeIncident(e, e);
238             if (ret != null) return ret;
239             ret = getFreeIncident(e.pair.next, e.pair.next);
240             if (ret == null) throw new Error("unable to find free incident to " + this);
241             return ret;
242         }
243
244         public E getFreeIncident(E start, E before) {
245             E e = start;
246             do {
247                 if (e.pair.p2 == this && e.pair.t == null && e.pair.next.t == null) return e.pair;
248                 e = e.pair.next;
249             } while(e != before);
250             return null;
251         }
252
253         public E getE(Point p2) {
254             Vert v = pointset.get(p2);
255             if (v==null) return null;
256             return getE(v);
257         }
258         public E getE(Vert p2) {
259             E e = this.e;
260             do {
261                 if (e==null) return null;
262                 if (e.p1 == this && e.p2 == p2) return e;
263                 e = e.pair.next;
264             } while (e!=this.e);
265             return null;
266         }
267
268         public boolean isBoundTo(Vert p) {
269             Vert px = p;
270             do {
271                 if (px==this) return true;
272                 px = px.bound_to;
273             } while(px != p);
274             return false;
275         }
276
277         public void unbind() { bound_to = this; binding = new Matrix(); }
278         public void bind(Vert p) { bind(p, new Matrix()); }
279         public void bind(Vert p, Matrix binding) {
280             if (isBoundTo(p)) return;
281             Vert temp_bound_to = p.bound_to;
282             Matrix temp_binding = p.binding;
283             p.bound_to = this.bound_to;
284             p.binding = binding.times(this.binding); // FIXME: may have order wrong here
285             this.bound_to = temp_bound_to;
286             this.binding = temp_binding.times(temp_binding); // FIXME: may have order wrong here
287         }
288         public Vec norm() {
289             Vec norm = new Vec(0, 0, 0);
290             E e = this.e;
291             do {
292                 if (e.t != null) norm = norm.plus(e.t.norm().times((float)e.prev.angle()));
293                 e = e.pair.next;
294             } while(e != this.e);
295             return norm.norm();
296         }
297     }
298
299     /** [UNIQUE] an edge */
300     public final class E implements Comparable<E> {
301
302         public final Vert p1, p2;
303         T t;     // triangle to our "left"
304         E prev;  // previous half-edge
305         E next;  // next half-edge
306         E pair;  // partner half-edge
307         public BindingGroup bg = new BindingGroup(this);
308
309         public int compareTo(E e) { return e.length() > length() ? 1 : -1; }
310
311         public void bind(E e) { bind(e, new Matrix()); }
312         public void bind(E e, Matrix m) { e.bg.add(this); }
313
314         public void dobind() {
315             if (bg==null) return;
316             for(E ex : bg.es) {
317                 if (ex==this) continue;
318                 p1.bind(ex.p1);
319                 p2.bind(ex.p2);
320             }
321         }
322
323         boolean shattered = false;
324         public Point shatter() { return shatter(midpoint(), null, null); }
325         public Point shatter(Point mid, BindingGroup bg1, BindingGroup bg2) {
326             if (shattered) return mid;
327             shattered = true;
328
329             Vert r = next.p2;
330             E next = this.next;
331             E prev = this.prev;
332
333             if (bg1==null) bg1 = new BindingGroup();
334             if (bg2==null) bg2 = new BindingGroup();
335             for(E e : bg.es) e.shatter(e.midpoint(), bg1, bg2);
336             pair.shatter();
337             destroy();
338
339             newT(r.p, p1.p, mid, null);
340             newT(r.p, mid, p2.p, null);
341             bg1.add(p1.getE(mid));
342             bg2.add(p2.getE(mid).pair);
343             return mid;
344         }
345
346         public boolean destroyed = false;
347         public void destroy() {
348             if (destroyed) return;
349             destroyed = true;
350             pair.destroyed = true;
351             if (next.t != null) next.t.destroy();
352             if (prev.t != null) prev.t.destroy();
353             next.t = null;
354             prev.t = null;
355             pair.next.t = null;
356             pair.prev.t = null;
357             this.bg = null;
358             pair.bg = null;
359             pair.prev.next = next;
360             next.prev = pair.prev;
361             prev.next = pair.next;
362             pair.next = prev;
363             if (p1.e == this) p1.e = prev.next;
364             if (pair.p1.e == pair) pair.p1.e = pair.prev.next;
365             avgedge -= this.length();
366             avgedge -= pair.length();
367             numedges--;
368             numedges--;
369         }
370
371         private void sync() {
372             this.prev.next = this;
373             this.next.prev = this;
374             this.pair.pair = this;
375             if (this.next.p1 != p2) throw new Error();
376             if (this.prev.p2 != p1) throw new Error();
377             if (this.p1.e == null) this.p1.e = this;
378             if (!added) {
379                 added = true;
380                 numedges++;
381                 avgedge += length();
382             }
383         }
384         private boolean added = false;
385
386         public T makeT() { return t==null ? (t = new T(this)) : t; }
387
388         /** angle between this half-edge and the next */
389         public double angle() {
390             Vec v1 = next.p2.p.minus(p2.p);
391             Vec v2 = this.p1.p.minus(p2.p);
392             return Math.acos(v1.norm().dot(v2.norm()));
393         }
394
395         public void makeAdjacent(E e) {
396             if (this.next == e) return;
397             if (p2 != e.p1) throw new Error("cannot make adjacent -- no shared vertex");
398             if (t != null || e.t != null) throw new Error("cannot make adjacent -- edges not both free");
399
400             E freeIncident = p2.getFreeIncident(e, this);
401
402             e.prev.next = freeIncident.next;
403             freeIncident.next.prev = e.prev;
404
405             freeIncident.next = this.next;
406             this.next.prev = freeIncident;
407             
408             this.next = e;
409             e.prev = this;
410
411             sync();
412             freeIncident.sync();
413         }
414
415         /** creates an isolated edge out in the middle of space */
416         public E(Point p1, Point p2) {
417             if (pointset.get(p1) != null) throw new Error();
418             if (pointset.get(p2) != null) throw new Error();
419             this.p1 = new Vert(p1);
420             this.p2 = new Vert(p2);
421             this.prev = this.next = this.pair = new E(this, this, this);
422             this.p1.e = this;
423             this.p2.e = this.pair;
424             sync();
425         }
426
427         /** adds a new half-edge from prev.p2 to p2 */
428         public E(E prev, Point p) {
429             Vert p2;
430             p2 = pointset.get(p);
431             if (p2 == null) p2 = new Vert(p);
432             this.p1 = prev.p2;
433             this.p2 = p2;
434             this.prev = prev;
435             if (p2.getE(p1) != null) throw new Error();
436             if (p2.e==null) {
437                 this.next = this.pair = new E(this, this, prev.next);
438             } else {
439                 E q = p2.getFreeIncident();
440                 this.next = q.next;
441                 this.next.prev = this;
442                 E z = prev.next;
443                 this.prev.next = this;
444                 this.pair = new E(q, this, z);
445             }
446             if (p2.e==null) p2.e = this.pair;
447             sync();
448         }
449
450         /** adds a new half-edge to the mesh with a given predecessor, successor, and pair */
451         public E(E prev, E pair, E next) {
452             this.p1 = prev.p2;
453             this.p2 = next.p1;
454             this.prev = prev;
455             this.next = next;
456             this.pair = pair;
457             sync();
458         }
459         public Point midpoint() { return new Point((p1.p.x+p2.p.x)/2, (p1.p.y+p2.p.y)/2, (p1.p.z+p2.p.z)/2); }
460         public boolean has(Vert v) { return v==p1 || v==p2; }
461         public float length() { return p1.p.minus(p2.p).mag(); }
462         public String toString() { return p1+"->"+p2; }
463
464         public boolean intersects(T t) {
465             double A0=t.v1().p.x, A1=t.v1().p.y, A2=t.v1().p.z;
466             double B0=t.v2().p.x, B1=t.v2().p.y, B2=t.v2().p.z;
467             double C0=t.v3().p.x, C1=t.v3().p.y, C2=t.v3().p.z;
468             double j0=p1.p.x, j1=p1.p.y, j2=p1.p.z;
469             double k0=p2.p.x, k1=p2.p.y, k2=p2.p.z;
470             double J0, J1, J2;
471             double K0, K1, K2;
472             double i0, i1, i2;
473             double a0, a1, a2;
474             double b0, b1, b2;
475             double c0, c1, c2;
476             double in_det;
477             double R00, R01, R02, R03,
478                 R10, R11, R12, R13,
479                 R20, R21, R22, R23,
480                 R30, R31, R32, R33;
481
482
483             /* a = B - A */
484             a0 = B0 - A0; 
485             a1 = B1 - A1; 
486             a2 = B2 - A2;
487             /* b = C - B */
488             b0 = C0 - A0;
489             b1 = C1 - A1;
490             b2 = C2 - A2;
491             /* c = a &times; b */
492             c0 = a1 * b2 - a2 * b1;
493             c1 = a2 * b0 - a0 * b2;
494             c2 = a0 * b1 - a1 * b0;
495  
496             /* M^(-1) = (1/det(M)) * adj(M) */
497             in_det = 1 / (c0 * c0 + c1 * c1 + c2 * c2);
498             R00 = (b1 * c2 - b2 * c1) * in_det;
499             R01 = (b2 * c0 - b0 * c2) * in_det;
500             R02 = (b0 * c1 - b1 * c0) * in_det;
501             R10 = (c1 * a2 - c2 * a1) * in_det;
502             R11 = (c2 * a0 - c0 * a2) * in_det;
503             R12 = (c0 * a1 - c1 * a0) * in_det;
504             R20 = (c0) * in_det;
505             R21 = (c1) * in_det;
506             R22 = (c2) * in_det;
507   
508             /* O = M^(-1) * A */
509             R03 = -(R00 * A0 + R01 * A1 + R02 * A2);
510             R13 = -(R10 * A0 + R11 * A1 + R12 * A2);
511             R23 = -(R20 * A0 + R21 * A1 + R22 * A2);
512  
513             /* fill in last row of 4x4 matrix */
514             R30 = R31 = R32 = 0;
515             R33 = 1;
516   
517             J2 = R20 * j0 + R21 * j1 + R22 * j2 + R23;
518             K2 = R20 * k0 + R21 * k1 + R22 * k2 + R23;
519             if (J2 * K2 >= 0) return false;
520
521             J0 = R00 * j0 + R01 * j1 + R02 * j2 + R03;
522             K0 = R00 * k0 + R01 * k1 + R02 * k2 + R03;
523             i0 = J0 + J2 * ((K0 - J0) / (J2 - K2));
524             if (i0 < 0 || i0 > 1) return false;
525   
526             J1 = R10 * j0 + R11 * j1 + R12 * j2 + R13;
527             K1 = R10 * k0 + R11 * k1 + R12 * k2 + R13;
528             i1 = J1 + J2 * ((K1 - J1) / (J2 - K2));
529             if (i1 < 0 || i1 > 1 || i0 + i1 > 1) return false;
530
531             return true;            
532         }
533     }
534
535     public E makeE(Point p1, Point p2) {
536         Vert v1 = pointset.get(p1);
537         Vert v2 = pointset.get(p2);
538         if (v1 != null && v2 != null) {
539             E e = v1.getE(v2);
540             if (e != null) return e;
541             e = v2.getE(v1);
542             if (e != null) return e;
543         }
544         if (v1 != null) return new E(v1.getFreeIncident(), p2);
545         if (v2 != null) return new E(v2.getFreeIncident(), p1).pair;
546         return new E(p1, p2);
547     }
548     public T newT(Point p1, Point p2, Point p3, Vec norm) {
549         if (norm != null) {
550             Vec norm2 = p3.minus(p1).cross(p2.minus(p1));
551             float dot = norm.dot(norm2);
552             //if (Math.abs(dot) < EPointSILON) throw new Error("dot products within evertsilon of each other: "+norm+" "+norm2);
553             if (dot < 0) { Point p = p1; p1=p2; p2 = p; }
554         }
555         E e12 = makeE(p1, p2);
556         E e23 = makeE(p2, p3);
557         E e31 = makeE(p3, p1);
558         while(e12.next != e23 || e23.next != e31 || e31.next != e12) {
559             e12.makeAdjacent(e23);
560             e23.makeAdjacent(e31);
561             e31.makeAdjacent(e12);
562         }
563         T ret = e12.makeT();
564         if (e12.t == null) throw new Error();
565         if (e23.t == null) throw new Error();
566         if (e31.t == null) throw new Error();
567         return ret;
568     }
569
570
571     public class FaceIterator implements Iterator<T> {
572         private HashSet<T> visited = new HashSet<T>();
573         private LinkedList<T> next = new LinkedList<T>();
574         public FaceIterator() { }
575         public FaceIterator(Vert v) { next.addFirst(v.e.t); }
576         public boolean hasNext() { return next.peek()!=null; }
577         public void remove() { throw new Error(); }
578         public T next() {
579             T ret = next.removeFirst();
580             if (ret == null) return null;
581             visited.add(ret);
582             T t1 = ret.e1().pair.t;
583             T t2 = ret.e2().pair.t;
584             T t3 = ret.e3().pair.t;
585             if (t1 != null && !visited.contains(t1)) next.addFirst(t1);
586             if (t2 != null && !visited.contains(t2)) next.addFirst(t2);
587             if (t3 != null && !visited.contains(t3)) next.addFirst(t3);
588             return ret;
589         }
590     }
591
592     /** [UNIQUE] a triangle (face) */
593     public final class T extends Triangle {
594         public final E e1;
595         public final int color;
596
597         public void destroy() {
598         }
599
600         T(E e1) {
601             this.e1 = e1;
602             E e2 = e1.next;
603             E e3 = e2.next;
604             if (e1==e2 || e1==e3) throw new Error();
605             if (e3.next!=e1) throw new Error();
606             if (e1.t!=null || e2.t!=null || e3.t!=null) throw new Error("non-manifold surface or disagreeing normals");
607             e1.t = this;
608             e1.next.t = this;
609             e1.next.next.t = this;
610
611             // FIXME: check for sealed/watertight surface once construction is complete (and infer normal(s)?)
612
613             int color = Math.abs(random.nextInt());
614             while(true) {
615                 color = color % 4;
616                 if (e1().pair.t != null && color == e1().pair.t.color) { color++; continue; }
617                 if (e2().pair.t != null && color == e2().pair.t.color) { color++; continue; }
618                 if (e3().pair.t != null && color == e3().pair.t.color) { color++; continue; }
619                 break;
620             }
621             this.color = color;
622         }
623         public E e1() { return e1; }
624         public E e2() { return e1.next; }
625         public E e3() { return e1.prev; }
626         public Vert v1() { return e1.p1; }
627         public Vert v2() { return e1.p2; }
628         public Vert v3() { return e1.next.p2; }
629         public Point p1() { return e1.p1.p; }
630         public Point p2() { return e1.p2.p; }
631         public Point p3() { return e1.next.p2.p; }
632         public boolean hasE(E e) { return e1==e || e1.next==e || e1.prev==e; }
633         public boolean has(Vert v) { return v1()==v || v2()==v || v3()==v; }
634     }
635
636 }