X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fqfat%2FMesh.java;h=94b4e73c68863adee3ca9b128d87333a800fb981;hb=162b76f92f5adaf80b312bee2a6bcd5b7ba2eabd;hp=d1fda3c232d4e2273eb20bfd40406fa32228e41d;hpb=be39f0f6c815c0e92b157fa18c568f0a034fd583;p=anneal.git diff --git a/src/edu/berkeley/qfat/Mesh.java b/src/edu/berkeley/qfat/Mesh.java index d1fda3c..94b4e73 100644 --- a/src/edu/berkeley/qfat/Mesh.java +++ b/src/edu/berkeley/qfat/Mesh.java @@ -11,8 +11,8 @@ import edu.berkeley.qfat.geom.Point; public class Mesh implements Iterable { - public static float EPSILON = (float)0.0001; - public static Random random = new Random(); + public static final float EPSILON = (float)0.0001; + public static final Random random = new Random(); private PointSet pointset = new PointSet(); @@ -98,7 +98,6 @@ public class Mesh implements Iterable { return (float)total; } - public class BindingGroup { public HashSet es = new HashSet(); public BindingGroup() { } @@ -124,8 +123,19 @@ public class Mesh implements Iterable { public final class Vert extends HasPoint { public Point p; + E e; // some edge *leaving* this point + + Vert bound_to = this; + int watch_count; + float watch_x; + float watch_y; + float watch_z; + Vert watch; + Matrix binding = new Matrix(); + float oldscore = 0; + boolean inserted = false; + public Point getPoint() { return p; } - private Vert(Point p, E e) { this(p); } private Vert(Point p) { this.p = p; if (pointset.get(p) != null) throw new Error(); @@ -180,8 +190,6 @@ public class Mesh implements Iterable { /** does NOT update bound pairs! */ public boolean transform(Matrix m) { - // FIXME: screws up kdtree - // FIXME: screws up hashmap unscore(); try { if (pointset.get(this.p)==null) throw new Error(); @@ -190,7 +198,6 @@ public class Mesh implements Iterable { float newy = m.e*p.x + m.f*p.y + m.g*p.z + m.h; float newz = m.i*p.x + m.j*p.y + m.k*p.z + m.l; this.p = new Point(newx, newy, newz); - // FIXME: what if we move onto exactly where another point is? pointset.add(this); } catch (Exception e) { throw new RuntimeException(e); @@ -286,17 +293,6 @@ public class Mesh implements Iterable { } while(e != this.e); return norm.norm(); } - - Vert bound_to = this; - int watch_count; - float watch_x; - float watch_y; - float watch_z; - Vert watch; - E e; // some edge *leaving* this point - Matrix binding = new Matrix(); - float oldscore = 0; - boolean inserted = false; } /** [UNIQUE] an edge */ @@ -308,6 +304,7 @@ public class Mesh implements Iterable { E next; // next half-edge E pair; // partner half-edge public BindingGroup bg = new BindingGroup(this); + boolean shattered = false; public int compareTo(E e) { return e.length() > length() ? 1 : -1; } @@ -323,7 +320,6 @@ public class Mesh implements Iterable { } } - boolean shattered = false; public Point shatter() { return shatter(midpoint(), null, null); } public Point shatter(Point mid, BindingGroup bg1, BindingGroup bg2) { if (shattered) return mid; @@ -419,9 +415,11 @@ public class Mesh implements Iterable { public E(Point p1, Point p2) { if (pointset.get(p1) != null) throw new Error(); if (pointset.get(p2) != null) throw new Error(); - this.p1 = new Vert(p1, this); - this.p2 = new Vert(p2, this); + this.p1 = new Vert(p1); + this.p2 = new Vert(p2); this.prev = this.next = this.pair = new E(this, this, this); + this.p1.e = this; + this.p2.e = this.pair; sync(); } @@ -429,7 +427,7 @@ public class Mesh implements Iterable { public E(E prev, Point p) { Vert p2; p2 = pointset.get(p); - if (p2 == null) p2 = new Vert(p, this); + if (p2 == null) p2 = new Vert(p); this.p1 = prev.p2; this.p2 = p2; this.prev = prev; @@ -444,6 +442,7 @@ public class Mesh implements Iterable { this.prev.next = this; this.pair = new E(q, this, z); } + if (p2.e==null) p2.e = this.pair; sync(); } @@ -532,10 +531,6 @@ public class Mesh implements Iterable { } } - private Vert register(Point p) { - Vert v = pointset.get(p); - return v==null ? new Vert(p) : v; - } public E makeE(Point p1, Point p2) { Vert v1 = pointset.get(p1); Vert v2 = pointset.get(p2);