ags.utils.dataStructures.trees.secondGenKD
Class KdTree.DataPoint<T>

Package class diagram package KdTree.DataPoint
java.lang.Object
  extended by ags.utils.dataStructures.trees.secondGenKD.KdTree.DataPoint<T>
Enclosing class:
KdTree<T>

public static class KdTree.DataPoint<T>
extends Object

A location point and it's value (used for storage of the tree model)


Field Summary
 double[] location
           
 T value
           
 
Constructor Summary
KdTree.DataPoint(double[] location, T value)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

location

public final double[] location

value

public final T value
Constructor Detail

KdTree.DataPoint

public KdTree.DataPoint(double[] location,
                        T value)