checkpoint
[anneal.git] / src / edu / berkeley / qfat / geom / Segment.java
index 576bb75..5f46051 100644 (file)
@@ -25,4 +25,8 @@ public class Segment implements HasBoundingBox {
     public float getMaxZ() { return Math.max(p1.z, p2.z); }
     public float getMinZ() { return Math.min(p1.z, p2.z); }
 
+    public double distance(Point p) {
+        throw new RuntimeException("not yet implemented");
+    }
+
 }