remove unreferenced variable
This commit is contained in:
parent
a5cbc8c7f8
commit
c7e86ab57a
|
@ -32,10 +32,10 @@
|
||||||
namespace vcg
|
namespace vcg
|
||||||
{
|
{
|
||||||
namespace tri{
|
namespace tri{
|
||||||
/// \ingroup trimesh
|
/// \ingroup trimesh
|
||||||
|
|
||||||
/// \headerfile polygon_support.h vcg/complex/trimesh/polygon_support.h
|
/// \headerfile polygon_support.h vcg/complex/trimesh/polygon_support.h
|
||||||
|
|
||||||
/// \brief This class is used convert between polygonal meshes and triangular meshes
|
/// \brief This class is used convert between polygonal meshes and triangular meshes
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -105,7 +105,7 @@ namespace vcg
|
||||||
std::vector<typename TriMeshType::VertexPointer> vs;// vertices of the polygon
|
std::vector<typename TriMeshType::VertexPointer> vs;// vertices of the polygon
|
||||||
std::vector<typename TriMeshType::FacePointer> fs;// triangle faces corresponding to the polygon
|
std::vector<typename TriMeshType::FacePointer> fs;// triangle faces corresponding to the polygon
|
||||||
|
|
||||||
int pvi = 0; // number of vertices of the polygon
|
|
||||||
// find a non tagged edge
|
// find a non tagged edge
|
||||||
int se = 0;
|
int se = 0;
|
||||||
for(;se < 3;++se) if (!(*tfi).IsF(se)) break;
|
for(;se < 3;++se) if (!(*tfi).IsF(se)) break;
|
||||||
|
|
Loading…
Reference in New Issue