Small changes to the texdeci sample (better depend path and corrected saving)

This commit is contained in:
Paolo Cignoni 2011-06-06 15:14:10 +00:00
parent 0941ea0474
commit 62a5d3856d
2 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ for(int i=0;i<meshNum;++i)
{ {
char buf[255]; char buf[255];
sprintf(buf,"out%i.ply",i); sprintf(buf,"out%i.ply",i);
tri::io::ExporterPLY<MyMesh>::Save(meshVec[i],buf,false); tri::io::ExporterPLY<MyMesh>::Save(meshVec[i],buf,tri::io::Mask::IOM_WEDGTEXCOORD,false);
} }
// TriEdgeCollapseQuadricParameter qparams; // TriEdgeCollapseQuadricParameter qparams;

View File

@ -1,7 +1,7 @@
#DEFINES += VCG_USE_EIGEN #DEFINES += VCG_USE_EIGEN
TARGET = texdeci TARGET = texdeci
#LIBPATH += #LIBPATH +=
DEPENDPATH += . DEPENDPATH += . ../..
INCLUDEPATH += . ../.. INCLUDEPATH += . ../..
CONFIG += console stl debug_and_release CONFIG += console stl debug_and_release
TEMPLATE = app TEMPLATE = app