clear method
void
clear()
Clears all nodes from the QuadTree
Implementation
void clear() {
_nodes?.clear();
_children = null;
_totalNodeCount = 0;
}
Clears all nodes from the QuadTree
void clear() {
_nodes?.clear();
_children = null;
_totalNodeCount = 0;
}