Example #1
0
// -------------------------------------------------------------------------------------
void MeshHash::queryUnique(const NxBounds3 &bounds, NxArray<int> &itemIndices, int maxIndices)
{
	query(bounds, itemIndices, maxIndices);
	compressIndices(itemIndices);
}
Example #2
0
// -------------------------------------------------------------------------------------
void MeshHash::queryUnique(const NxVec3 &pos, NxArray<int> &itemIndices, int maxIndices)
{
	query(pos, itemIndices, maxIndices);
	compressIndices(itemIndices);
}
Example #3
0
// -------------------------------------------------------------------------------------
void MeshHash::queryUnique(const NxVec3 &pos, std::vector<int> &itemIndices, int maxIndices)
{
	query(pos, itemIndices, maxIndices);
	compressIndices(itemIndices);
}