checkpoint
[anneal.git] / src / edu / berkeley / qfat / geom / Point.java
index fdef5e6..f46cc7e 100644 (file)
@@ -1,5 +1,6 @@
 package edu.berkeley.qfat.geom;
 import javax.media.opengl.*;
+import javax.media.opengl.glu.*;
 
 /** point in 3-space; immutable */
 public final class Point implements HasBoundingBox {
@@ -11,9 +12,6 @@ public final class Point implements HasBoundingBox {
 
     public float distance(Point p) { return (float)Math.sqrt((x-p.x)*(x-p.x)+(y-p.y)*(y-p.y)+(z-p.z)*(z-p.z)); }
 
-    // FIXME: this should be eliminated; wrong order
-    public Point times(Matrix m) { return m.times(this); }
-
     public Vec minus(Point p) { return new Vec(x-p.x, y-p.y, z-p.z); }
     public Point plus(Vec v) { return new Point(x+v.x, y+v.y, z+v.z); }