corrected wrong invocation of istwomanifold check

This commit is contained in:
Paolo Cignoni 2009-01-26 15:15:11 +00:00
parent 79b2ad6eef
commit c9173c73fe
1 changed files with 6 additions and 2 deletions

View File

@ -725,9 +725,13 @@ private:
return nonManifoldCnt;
}
static bool IsTwoManifoldVertex( MeshType & m )
static bool IsTwoManifoldVertexFF( MeshType & m )
{
return CountNonManifoldVertex(m,false) == 0 ;
return CountNonManifoldVertexFF(m,false) == 0 ;
}
static bool IsTwoManifoldVertexFFVF( MeshType & m )
{
return CountNonManifoldVertexFFVF(m,false) == 0 ;
}
static void CountEdges( MeshType & m, int &count_e, int &boundary_e )