All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.khelekore.prtree.PointND Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
package org.khelekore.prtree;

/** A description of an N-dimensional point
 */
public interface PointND {
    /**
     * @return the number of dimensions this point has
     */
    int getDimensions ();
    
    /**
     * @param axis the axis to get the value for
     * @return the ordinate value for the given axis
     */
    double getOrd (int axis);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy