public SphereTreeNode(T data, Sphere sphere)
 {
     _sphere = sphere;
     _data   = data;
 }
 public SphereTreeNode()
 {
     _sphere = new Sphere(Vector3.zero, 1.0f);
     _data   = default(T);
 }