Corrected naming for the unreference vertices function now the func that just count the unref vert is called CountUnreferencedVertex

This commit is contained in:
Paolo Cignoni 2012-06-28 17:21:20 +00:00
parent 9ed6314d10
commit 28f3e120f0
1 changed files with 6 additions and 0 deletions

View File

@ -328,6 +328,12 @@ private:
}
return total;
}
static int CountUnreferencedVertex( MeshType& m)
{
return RemoveUnreferencedVertex(m,false);
}
/** This function removes that are not referenced by any face. The function updates the vn counter.
@param m The mesh
@return The number of removed vertices