added method to know if a spatial ubdexing structure is empty or not
This commit is contained in:
parent
aeea62cfd0
commit
070c47b0a5
|
@ -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
|
/// 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
|
/// l'edge cell che parte dal grid point in direzione axis
|
||||||
|
|
|
@ -115,6 +115,10 @@ namespace vcg{
|
||||||
void operator ++() {t++;}
|
void operator ++() {t++;}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
inline bool Empty() const
|
||||||
|
{
|
||||||
|
return hash_table.empty();
|
||||||
|
}
|
||||||
|
|
||||||
size_t CellSize(const Point3i &cell)
|
size_t CellSize(const Point3i &cell)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue