added method to know if a spatial ubdexing structure is empty or not

This commit is contained in:
Paolo Cignoni 2010-11-09 08:12:58 +00:00
parent aeea62cfd0
commit 070c47b0a5
2 changed files with 5 additions and 0 deletions

View File

@ -132,6 +132,7 @@ namespace vcg {
bool Empty() const {return links.empty();}
/// Date le coordinate di un grid point (corner minx,miy,minz) ritorna le celle che condividono
/// l'edge cell che parte dal grid point in direzione axis

View File

@ -115,6 +115,10 @@ namespace vcg{
void operator ++() {t++;}
};
inline bool Empty() const
{
return hash_table.empty();
}
size_t CellSize(const Point3i &cell)
{