Example #1
0
// Build a list of all indices in SPTree
void SPTree::getAllIndices(int* indices)
{
    getAllIndices(indices, 0);
}
Example #2
0
// Build a list of all indices in quadtree
void QuadTree::getAllIndices(int* indices)
{
    getAllIndices(indices, 0);
}
Example #3
0
void SPTree<NDims>::getAllIndices(unsigned int* indices)
{
    getAllIndices(indices, 0);
}