checkpoint
[anneal.git] / src / edu / berkeley / qfat / geom / HasPoint.java
index 99a19dc..203195c 100644 (file)
@@ -2,13 +2,6 @@ package edu.berkeley.qfat.geom;
 import javax.media.opengl.*;
 
 /** any object associated with a specific point in 3D space */
-public abstract class HasPoint extends HasBindingGroup implements HasBoundingBox {
-    public abstract Point getPoint();
-    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(); }
-    public String toString() { return getPoint().toString(); }
+public interface HasPoint extends HasBoundingBox {
+    public Point getPoint();
 }