solved minor compilation issues
This commit is contained in:
parent
677295f1a3
commit
3bd4213984
|
|
@ -566,10 +566,10 @@ namespace vcg {
|
||||||
vcg::face::VFOrderedStarFF(pos, posVec);
|
vcg::face::VFOrderedStarFF(pos, posVec);
|
||||||
|
|
||||||
missmatch=0;
|
missmatch=0;
|
||||||
for (unsigned int i=0;i<faces.size();i++)
|
for (unsigned int i=0;i<posVec.size();i++)
|
||||||
{
|
{
|
||||||
FaceType *curr_f=posVec[i].F();
|
FaceType *curr_f=posVec[i].F();
|
||||||
FaceType *next_f=posVec[(i+1)%faces.size()].F();
|
FaceType *next_f=posVec[(i+1)%posVec.size()].F();
|
||||||
|
|
||||||
///find the current missmatch
|
///find the current missmatch
|
||||||
missmatch+=MissMatchByCross(*curr_f,*next_f);
|
missmatch+=MissMatchByCross(*curr_f,*next_f);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue