checkpoint
[anneal.git] / src / edu / berkeley / qfat / Mesh.java
index 3b39842..374f012 100644 (file)
@@ -98,7 +98,6 @@ public class Mesh implements Iterable<Mesh.T> {
         return (float)total;
     }
 
-
     public class BindingGroup {
         public HashSet<E> es = new HashSet<E>();
         public BindingGroup() { }
@@ -139,8 +138,6 @@ public class Mesh implements Iterable<Mesh.T> {
         public Point getPoint() { return p; }
         private Vert(Point p) {
             this.p = p;
-            //this.e = e;
-            //if (e==null) throw new Error();
             if (pointset.get(p) != null) throw new Error();
             pointset.add(this);
         }
@@ -193,8 +190,6 @@ public class Mesh implements Iterable<Mesh.T> {
 
         /** 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();