public Octree(float xMax, float xMin, float yMax, float yMin, float zMax, float zMin, int maxItems, float minSize) { Top = new OctreeNode <T>(xMax, xMin, yMax, yMin, zMax, zMin, maxItems, minSize); }