checkpoint
[anneal.git] / src / edu / berkeley / qfat / bind / HasQuadric.java
index 1b13c33..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 HasBindingGroup implements 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;
 
@@ -82,10 +82,4 @@ public abstract class HasQuadric extends HasBindingGroup implements HasPoint {
         nearest_in_other_mesh = null;
     }
 
-    public float getMaxX() { return getPoint().getMaxX(); }
-    public float getMinX() { return getPoint().getMinX(); }
-    public float getMaxY() { return getPoint().getMaxY(); }
-    public float getMinY() { return getPoint().getMinY(); }
-    public float getMaxZ() { return getPoint().getMaxZ(); }
-    public float getMinZ() { return getPoint().getMinZ(); }
 }