// these interfaces may move at some point to something like: hep.heprep
package hep.graphics.heprep1;


/**
 *
 * @author M.Donszelmann
 *
 * @version $Id: HepRepPoint.java,v 1.2 2004/07/18 08:19:41 duns Exp $
 */

public interface HepRepPoint extends HepRepAttribute {
    public static final String cvsId = "$Id: HepRepPoint.java,v 1.2 2004/07/18 08:19:41 duns Exp $";

    public double getX();
    
    public double getY();
    
    public double getZ();
    
    public double[] getPoint();
    
    public HepRepPrimitive getPrimitive();
}
