1 // Copyright 2004, FreeHEP.
2 package hep.wired.heprep.feature;
3
4 import java.awt.geom.Point2D;
5
6 import hep.wired.services.Feature;
7
8 /***
9 * Can calculate a nearest point on an object.
10 *
11 * @author Mark Donszelmann
12 * @version $Id: HasNearestPoint.java 258 2004-06-08 06:27:49Z duns $
13 */
14
15 public interface HasNearestPoint extends Feature {
16
17 public Point2D getNearestPoint(Point2D p);
18 }