removed harmless warnings
This commit is contained in:
parent
d946a6c390
commit
cccc066735
|
@ -110,7 +110,7 @@ static int Open( OpenMeshType &m, std::vector<Shot<ScalarType> > & shots,
|
||||||
shots.resize(num_cams);
|
shots.resize(num_cams);
|
||||||
for(uint i = 0; i < num_cams;++i)
|
for(uint i = 0; i < num_cams;++i)
|
||||||
{
|
{
|
||||||
float f, k1, k2;
|
float f, k1;
|
||||||
vcg::Point4f R;
|
vcg::Point4f R;
|
||||||
vcg::Point3f t;
|
vcg::Point3f t;
|
||||||
|
|
||||||
|
|
|
@ -530,7 +530,7 @@ public:
|
||||||
} // end while stream not eof
|
} // end while stream not eof
|
||||||
assert((numTriangles +numVertices) == numVerticesPlusFaces+extraTriangles);
|
assert((numTriangles +numVertices) == numVerticesPlusFaces+extraTriangles);
|
||||||
|
|
||||||
FaceIterator fi = vcg::tri::Allocator<OpenMeshType>::AddFaces(m,numTriangles);
|
vcg::tri::Allocator<OpenMeshType>::AddFaces(m,numTriangles);
|
||||||
//-------------------------------------------------------------------------------
|
//-------------------------------------------------------------------------------
|
||||||
|
|
||||||
// Now the final passes:
|
// Now the final passes:
|
||||||
|
|
|
@ -96,7 +96,7 @@ static bool ReadHeader(const char * filename,unsigned int &/*num_cams*/, unsigne
|
||||||
|
|
||||||
static int Open( OpenMeshType &m, std::vector<Shot<ScalarType> > & shots,
|
static int Open( OpenMeshType &m, std::vector<Shot<ScalarType> > & shots,
|
||||||
std::vector<std::string > & image_filenames,
|
std::vector<std::string > & image_filenames,
|
||||||
const char * filename,const char * filename_images, const char * filename_images_path = "",CallBackPos *cb=0)
|
const char * filename,const char * filename_images, CallBackPos *cb=0)
|
||||||
{
|
{
|
||||||
unsigned int num_cams,num_points;
|
unsigned int num_cams,num_points;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue