Fixed wrong function calls

This commit is contained in:
Paolo Cignoni 2011-02-01 12:59:57 +00:00
parent 6583f81c3f
commit 9ddbd14616
2 changed files with 5 additions and 5 deletions

View File

@ -296,9 +296,9 @@ namespace vcg
{ {
if( !((*fi).IsD()) ) if( !((*fi).IsD()) )
{ {
if( HalfEdgeTopology<MeshType>::is_singlet(&(*fi)) ) if( HalfEdgeTopology<MeshType>::is_singlet_quad(&(*fi)) )
{ {
HalfEdgeTopology<MeshType>::singlet_remove(m, &(*fi)); HalfEdgeTopology<MeshType>::singlet_remove_quad(m, &(*fi));
count++; count++;
} }
} }

View File

@ -1280,7 +1280,7 @@ namespace vcg
} }
/*! /*!
* Checks if a vertex is non-manifold, ased only on local informations * Checks if a vertex is non-manifold, based only on local informations
* *
* \param vp Vertex to check * \param vp Vertex to check
* *
@ -1468,12 +1468,12 @@ namespace vcg
protected: protected:
/*! /*!
* Gets all edges incident to a face * Gets all hedges incident to a face
* *
* \param fp Face * \param fp Face
* \param starting_he A hedge in the face from which to start * \param starting_he A hedge in the face from which to start
* *
* \return Vector containing the incident edges * \return Vector containing the incident hedges
*/ */
static vector<HEdgePointer> getHEdges(FacePointer fp, HEdgePointer starting_he = NULL) static vector<HEdgePointer> getHEdges(FacePointer fp, HEdgePointer starting_he = NULL)
{ {