Interface KdNode.IKdValueFetcher
- 
- All Known Implementing Classes:
- KdNode.KdValueFetcherX,- KdNode.KdValueFetcherY
 - Enclosing class:
- KdNode
 
 protected static interface KdNode.IKdValueFetcherInterface for hyperplane coordinate value fetchers.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Comparator<ISpaceObject>getComparator()Returns a comparator for sorting within the current hyperplane.doublegetValue(IVector2 point)Returns the coordinate value of the current hyperplane.KdNode.IKdValueFetchernextFetcher()Returns the fetcher for the next hyperplane in the tree.
 
- 
- 
- 
Method Detail- 
getValuedouble getValue(IVector2 point) Returns the coordinate value of the current hyperplane.- Parameters:
- point- The input value.
- Returns:
- Coordinate value of the current hyperplane.
 
 - 
nextFetcherKdNode.IKdValueFetcher nextFetcher() Returns the fetcher for the next hyperplane in the tree.- Returns:
- Fetcher for the next hyperplane in the tree.
 
 - 
getComparatorjava.util.Comparator<ISpaceObject> getComparator() Returns a comparator for sorting within the current hyperplane.- Returns:
- Comparator for sorting within the current hyperplane.
 
 
- 
 
-