Minor changes
This commit is contained in:
parent
825c3b9a0c
commit
16b0bd16c6
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.7 2004/09/14 19:49:43 ganovelli
|
||||||
|
first compilation version
|
||||||
|
|
||||||
Revision 1.6 2004/07/15 00:13:39 cignoni
|
Revision 1.6 2004/07/15 00:13:39 cignoni
|
||||||
Better doxigen documentation
|
Better doxigen documentation
|
||||||
|
|
||||||
|
@ -151,9 +154,10 @@ void FaceBorderFromNone(MeshType &m)
|
||||||
typename UpdateMeshType::FaceIterator pf;
|
typename UpdateMeshType::FaceIterator pf;
|
||||||
typename std::vector<PosType>::iterator p;
|
typename std::vector<PosType>::iterator p;
|
||||||
|
|
||||||
if( fn == 0 ) return;
|
if( m.fn == 0 )
|
||||||
|
return;
|
||||||
|
|
||||||
e.resize(fn*3); // Alloco il vettore ausiliario
|
e.resize(m.fn*3); // Alloco il vettore ausiliario
|
||||||
p = e.begin();
|
p = e.begin();
|
||||||
for(pf=m.face.begin();pf!=m.face.end();++pf) // Lo riempio con i dati delle facce
|
for(pf=m.face.begin();pf!=m.face.end();++pf) // Lo riempio con i dati delle facce
|
||||||
if( ! (*pf).IsDeleted() )
|
if( ! (*pf).IsDeleted() )
|
||||||
|
@ -193,7 +197,7 @@ void VertexBorderFromFace(MeshType &m)
|
||||||
typename MeshType::VertexIterator v;
|
typename MeshType::VertexIterator v;
|
||||||
typename MeshType::FaceIterator f;
|
typename MeshType::FaceIterator f;
|
||||||
|
|
||||||
for(v=vert.begin();v!=vert.end();++v)
|
for(v=m.vert.begin();v!=m.vert.end();++v)
|
||||||
(*v).ClearB();
|
(*v).ClearB();
|
||||||
|
|
||||||
for(f=m.face.begin();f!=m.face.end();++f)
|
for(f=m.face.begin();f!=m.face.end();++f)
|
||||||
|
|
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.4 2004/09/09 14:35:14 ponchio
|
||||||
|
Typename changes for linux
|
||||||
|
|
||||||
Revision 1.3 2004/08/31 15:18:54 pietroni
|
Revision 1.3 2004/08/31 15:18:54 pietroni
|
||||||
minor changes to comply gcc compiler (typename's )
|
minor changes to comply gcc compiler (typename's )
|
||||||
|
|
||||||
|
@ -178,17 +181,6 @@ static void PerVertexNormalized(ComputeMeshType &m)
|
||||||
(*vi).N().Normalize();
|
(*vi).N().Normalize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void ComputeE()
|
|
||||||
{
|
|
||||||
FaceIterator f;
|
|
||||||
|
|
||||||
for(f = m.face.begin(); f!=m.face.end(); ++f)
|
|
||||||
(*f).ComputeE();
|
|
||||||
}
|
|
||||||
|
|
||||||
}; // end class
|
}; // end class
|
||||||
|
|
||||||
} // End namespace
|
} // End namespace
|
||||||
|
|
Loading…
Reference in New Issue