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

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

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

/** A class that can calculate the distance to a given object
 *  stored in the PRTree
 * @param  the data type to calculate distances to
 */
public interface DistanceCalculator {
    /** Calculate the distance between the given object and the point
     * @param t the object to calculate the distance to
     * @param p the point
     * @return The calculated distance
     */
    double distanceTo (T t, PointND p);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy