Corrected naming for the unreference vertices function now the func that just count the unref vert is called CountUnreferencedVertex
This commit is contained in:
parent
9ed6314d10
commit
28f3e120f0
vcg/complex/algorithms
|
@ -328,6 +328,12 @@ private:
|
||||||
}
|
}
|
||||||
return total;
|
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.
|
/** This function removes that are not referenced by any face. The function updates the vn counter.
|
||||||
@param m The mesh
|
@param m The mesh
|
||||||
@return The number of removed vertices
|
@return The number of removed vertices
|
||||||
|
|
Loading…
Reference in New Issue