X-Git-Url: http://git.megacz.com/?p=anneal.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fqfat%2FMesh.java;h=c2d2988484942a4af1219190521350f223dfecdc;hp=0e2c1d68416114d28338da36bc115048ebcd2900;hb=dfc70bfd7fbba33c2ed41aa47c8a78b7a72a5606;hpb=d39304bb7e226d94996842f57a4d8d6987695184 diff --git a/src/edu/berkeley/qfat/Mesh.java b/src/edu/berkeley/qfat/Mesh.java index 0e2c1d6..c2d2988 100644 --- a/src/edu/berkeley/qfat/Mesh.java +++ b/src/edu/berkeley/qfat/Mesh.java @@ -109,11 +109,7 @@ public class Mesh implements Iterable { return m.times(1/(float)count); } - public HasQuadric nearest() { - if (error_against==null) return null; - return error_against.vertices.nearest(p, this); - } - + public HasQuadric nearest() { return error_against==null ? null : error_against.vertices.nearest(p, this); } public void computeError() { float nerror = quadric_count != 0 @@ -132,15 +128,6 @@ public class Mesh implements Iterable { setError(nerror); } - private void removeTrianglesFromRTree() { - for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) - if (e.t != null) e.t.removeFromRTree(); - } - private void addTrianglesToRTree() { - for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) - if (e.t != null) e.t.addToRTree(); - } - /** does NOT update bound pairs! */ public boolean transform(Matrix m) { if (immutableVertices) throw new Error(); @@ -150,12 +137,11 @@ public class Mesh implements Iterable { if (vertices.get(this.p)==null) throw new Error(); vertices.remove(this); - removeTrianglesFromRTree(); - float newx = m.a*p.x + m.b*p.y + m.c*p.z + m.d; - 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); - addTrianglesToRTree(); + for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) + if (e.t != null) e.t.removeFromRTree(); + this.p = m.times(this.p); + for(E e = this.e; e!=null; e=e.pair.next==this.e?null:e.pair.next) + if (e.t != null) e.t.addToRTree(); vertices.add(this); applyQuadricToNeighbor(); @@ -203,18 +189,14 @@ public class Mesh implements Iterable { public boolean move(Vec v) { Matrix m = Matrix.translate(v); - boolean good = true; for(Vertex p = this; p != null; p = (p.bound_to==this)?null:p.bound_to) good &= p.transform(m); - - if (good) { - for(Vertex p = this; p != null; p = (p.bound_to==this)?null:p.bound_to) + for(Vertex p = this; p != null; p = (p.bound_to==this)?null:p.bound_to) + if (good) p.reComputeErrorAround(); - } else { - for(Vertex p = this; p != null; p = (p.bound_to==this)?null:p.bound_to) + else p.transform(Matrix.translate(v.times(-1))); - } return good; }