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