Bugfix the init function.

This commit is contained in:
Paolo Cignoni 2007-01-31 15:24:30 +00:00
parent 48049d1e4b
commit 9cf8cbd534
1 changed files with 15 additions and 11 deletions

View File

@ -230,7 +230,7 @@ namespace vcg
/*!
*/
static void Init(TRIMESH_TYPE &mesh, HeapType &heap , bool Selected = false)
static void Init(TRIMESH_TYPE &mesh, HeapType &heap)
{
heap.clear();
FaceIterator f_iter;
@ -238,9 +238,12 @@ namespace vcg
{
if (! (*f_iter).IsD() )
{
if(!(Selected && !(*f_iter).IsS()))
//if(!(Selected && !(*f_iter).IsS()))
if( (*f_iter).V(0)->IsW() && (*f_iter).V(1)->IsW() && (*f_iter).V(2)->IsW())
{
for (unsigned int i=0; i<3; i++)
{
if( !(*f_iter).IsB(i) && (*f_iter).FFp(i)->V2((*f_iter).FFi(i) )->IsW() )
{
VertexPointer v0 = (*f_iter).V0(i);
VertexPointer v1 = (*f_iter).V1(i);
@ -250,6 +253,7 @@ namespace vcg
}
} //endif
} //endfor
}
} // endif
} //endfor
};