namespace Quadtree { /// /// Describes relative local position in respect to the current node. /// /// /// Integer values of UPPER_LEFT, UPPER_RIGHT, LOWER_RIGHT, LOWER_LEFT do correspond with the indices of the sub-nodes. /// public enum IntraLocation { UPPER_LEFT, UPPER_RIGHT, LOWER_RIGHT, LOWER_LEFT, SPANNING_LEFT, SPANNING_RIGHT, SPANNING_UPPER, SPANNING_LOWER, SPANNING }; }