//---------------------------------------------------------------------CONSTRUCTORS: public KDTree(Vector3[] points) { this.points = points; tree = KDNode.Create(points); }