add items to TODO list
[anneal.git] / src / edu / berkeley / qfat / bind / HasQuadric.java
index d5c32da..2e0f760 100644 (file)
@@ -1,12 +1,12 @@
 package edu.berkeley.qfat.bind;
 import edu.berkeley.qfat.geom.*;
-import javax.media.opengl.*;
 
 /** any object associated with a specific point in 3D space */
-public abstract class HasQuadric extends HasPoint {
+public abstract class HasQuadric extends HasBindingGroup {
 
     public Matrix errorQuadric() { return quadric; }
     public boolean quadricStale = false;
+
     /** the nearest vertex in the "score_against" mesh */
     public HasQuadric nearest_in_other_mesh;
 
@@ -81,4 +81,5 @@ public abstract class HasQuadric extends HasPoint {
         nearest_in_other_mesh.computeError();
         nearest_in_other_mesh = null;
     }
+
 }