removed warnings
This commit is contained in:
parent
f2b92b6484
commit
0b7528ee7d
|
@ -413,7 +413,7 @@ public:
|
||||||
static ScalarType MeshAngleDistortion(const MeshType &m)
|
static ScalarType MeshAngleDistortion(const MeshType &m)
|
||||||
{
|
{
|
||||||
ScalarType UDdist=0;
|
ScalarType UDdist=0;
|
||||||
for (int i=0;i<m.face.size();i++)
|
for (size_t i=0;i<m.face.size();i++)
|
||||||
{
|
{
|
||||||
if (m.face[i].IsD())continue;
|
if (m.face[i].IsD())continue;
|
||||||
const FaceType *f=&(m.face[i]);
|
const FaceType *f=&(m.face[i]);
|
||||||
|
@ -487,7 +487,7 @@ public:
|
||||||
ScalarType tot = 0;
|
ScalarType tot = 0;
|
||||||
ScalarType totA = 0;
|
ScalarType totA = 0;
|
||||||
|
|
||||||
for (int i=0;i<m.face.size();i++)
|
for (size_t i=0;i<m.face.size();i++)
|
||||||
{
|
{
|
||||||
if (m.face[i].IsD())continue;
|
if (m.face[i].IsD())continue;
|
||||||
ScalarType q;
|
ScalarType q;
|
||||||
|
|
|
@ -69,7 +69,7 @@ void OptimizeUV_LSCM( MeshType& m ,
|
||||||
vcg::tri::MeshToMatrix< MeshType >::GetTriMeshData( m, F, V );
|
vcg::tri::MeshToMatrix< MeshType >::GetTriMeshData( m, F, V );
|
||||||
|
|
||||||
// build fixed points data
|
// build fixed points data
|
||||||
int nFixed = 0;
|
size_t nFixed = 0;
|
||||||
for (int i=0; i<(int)m.vert.size(); i++) {
|
for (int i=0; i<(int)m.vert.size(); i++) {
|
||||||
if (m.vert[i].Flags()&fixedMask) nFixed++;
|
if (m.vert[i].Flags()&fixedMask) nFixed++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue