Updated names of adj functions and added ending newline

This commit is contained in:
Paolo Cignoni 2004-05-10 13:24:21 +00:00
parent 6a75af2188
commit 95f6c410d7
1 changed files with 8 additions and 5 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.5 2004/04/21 14:06:10 ganovelli
#ifndef added
Revision 1.4 2004/03/31 14:43:56 cignoni Revision 1.4 2004/03/31 14:43:56 cignoni
bug in update of VF adj bug in update of VF adj
@ -181,9 +184,9 @@ static FaceIterator AddFaces(MeshType &m, int n, PointerUpdater<FacePointer> &pu
{ {
if(FaceType::HasFFAdjacency()) if(FaceType::HasFFAdjacency())
{ {
pu.Update((*fi).F(0)); pu.Update((*fi).FFp(0));
pu.Update((*fi).F(1)); pu.Update((*fi).FFp(1));
pu.Update((*fi).F(2)); pu.Update((*fi).FFp(2));
} }
} }
VertexIterator vi; VertexIterator vi;
@ -191,7 +194,7 @@ static FaceIterator AddFaces(MeshType &m, int n, PointerUpdater<FacePointer> &pu
if(!(*vi).IsD()) if(!(*vi).IsD())
{ {
if(VertexType::HasVFAdjacency()) if(VertexType::HasVFAdjacency())
pu.Update((*vi).Fp()); pu.Update((*vi).VFb());
} }
// e poiche' lo spazio e' cambiato si ricalcola anche last da zero // e poiche' lo spazio e' cambiato si ricalcola anche last da zero
unsigned int siz=m.face.size()-n; unsigned int siz=m.face.size()-n;