added missing typenames
This commit is contained in:
parent
680279143c
commit
a707c1d217
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.31 2007/01/18 11:17:43 giec
|
||||||
|
The minimum weight algorithm keep the topology consistent.
|
||||||
|
|
||||||
Revision 1.30 2007/01/10 12:07:54 giec
|
Revision 1.30 2007/01/10 12:07:54 giec
|
||||||
Bugfixed ComputeDihedralAngle function
|
Bugfixed ComputeDihedralAngle function
|
||||||
|
|
||||||
|
@ -961,7 +964,7 @@ template<class EAR>
|
||||||
|
|
||||||
if(app.size() <= holeSize)
|
if(app.size() <= holeSize)
|
||||||
{
|
{
|
||||||
std::vector<PosType >::iterator itP;
|
typename std::vector<PosType >::iterator itP;
|
||||||
std::vector<FacePointer *> vfp;
|
std::vector<FacePointer *> vfp;
|
||||||
|
|
||||||
for(ithn = vvi.begin(); ithn!= vvi.end(); ++ithn)
|
for(ithn = vvi.begin(); ithn!= vvi.end(); ++ithn)
|
||||||
|
|
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.14 2007/01/17 14:31:47 giec
|
||||||
|
Added TrSplit function.
|
||||||
|
|
||||||
Revision 1.13 2006/10/27 13:26:49 ganovelli
|
Revision 1.13 2006/10/27 13:26:49 ganovelli
|
||||||
changed &*vert.end() to !vert.empty() -> &vert.back() to comply vs2005 compiler
|
changed &*vert.end() to !vert.empty() -> &vert.back() to comply vs2005 compiler
|
||||||
|
|
||||||
|
@ -824,7 +827,7 @@ void TriSplit(typename TRIMESH_TYPE::FacePointer f,
|
||||||
vB->P() = Center(f);
|
vB->P() = Center(f);
|
||||||
|
|
||||||
//i tre vertici della faccia da dividere
|
//i tre vertici della faccia da dividere
|
||||||
TRIMESH_TYPE::VertexType* V0,*V1,*V2;
|
typename TRIMESH_TYPE::VertexType* V0,*V1,*V2;
|
||||||
V0 = f->V(0);
|
V0 = f->V(0);
|
||||||
V1 = f->V(1);
|
V1 = f->V(1);
|
||||||
V2 = f->V(2);
|
V2 = f->V(2);
|
||||||
|
@ -847,7 +850,7 @@ void TriSplit(typename TRIMESH_TYPE::FacePointer f,
|
||||||
f->FFp(2)->FFp(f->FFi(2)) = f2;
|
f->FFp(2)->FFp(f->FFi(2)) = f2;
|
||||||
|
|
||||||
//adiacenza ff
|
//adiacenza ff
|
||||||
TRIMESH_TYPE::FacePointer FF0,FF1,FF2;
|
typename TRIMESH_TYPE::FacePointer FF0,FF1,FF2;
|
||||||
FF0 = f->FFp(0);
|
FF0 = f->FFp(0);
|
||||||
FF1 = f->FFp(1);
|
FF1 = f->FFp(1);
|
||||||
FF2 = f->FFp(2);
|
FF2 = f->FFp(2);
|
||||||
|
|
Loading…
Reference in New Issue