|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DistanceFunction
This interface defines the methods of an distance measure class. All three methods should return the same distance if equivalent inputs are given. The third method should regard the wrap around, as if there were no bounds, instead point (0,0) should be neighbour of point (n,n)!
Method Summary | |
---|---|
double |
getDistance(double[] point1,
double[] point2)
This method returns the distance between point1 and point2. |
double |
getDistance(int[] point1,
int[] point2)
This method returns the distance between point1 and point2. |
double |
getDistance(int[] point1,
int[] point2,
int[] dimensions)
This method returns the distance between point1 and point2. |
Method Detail |
---|
double getDistance(double[] point1, double[] point2)
double getDistance(int[] point1, int[] point2)
double getDistance(int[] point1, int[] point2, int[] dimensions)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |