- removed compiler time errors
This commit is contained in:
parent
73ee392537
commit
1dc8a067ac
vcg
wrap/gl
|
@ -1837,7 +1837,7 @@ public:
|
||||||
{
|
{
|
||||||
std::vector<typename MeshType::VertexPointer> temp;
|
std::vector<typename MeshType::VertexPointer> temp;
|
||||||
vcg::face::VVStarVF<typename MeshType::FaceType>(f->V(j), temp);
|
vcg::face::VVStarVF<typename MeshType::FaceType>(f->V(j), temp);
|
||||||
std::vector<typename MeshType::VertexPointer>::iterator iter = temp.begin();
|
typename std::vector<typename MeshType::VertexPointer>::iterator iter = temp.begin();
|
||||||
for (; iter != temp.end(); iter++)
|
for (; iter != temp.end(); iter++)
|
||||||
{
|
{
|
||||||
if ((*iter) != f->V1(j) && (*iter) != f->V2(j))
|
if ((*iter) != f->V1(j) && (*iter) != f->V2(j))
|
||||||
|
|
|
@ -351,7 +351,7 @@ static void FaceFaceFromTexCoord(MeshType &m)
|
||||||
bool isBorder = false;
|
bool isBorder = false;
|
||||||
if (!vcg::face::IsBorder((*fi), i))
|
if (!vcg::face::IsBorder((*fi), i))
|
||||||
{
|
{
|
||||||
MeshType::FacePointer nextFace = (*fi).FFp(i);
|
typename MeshType::FacePointer nextFace = (*fi).FFp(i);
|
||||||
int nextEdgeIndex = (*fi).FFi(i);
|
int nextEdgeIndex = (*fi).FFi(i);
|
||||||
bool border = false;
|
bool border = false;
|
||||||
if ((*fi).cV(i) == nextFace->cV(nextEdgeIndex))
|
if ((*fi).cV(i) == nextFace->cV(nextEdgeIndex))
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <cstdint>
|
//#include <cstdint>
|
||||||
|
|
||||||
namespace vcg {
|
namespace vcg {
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue