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];
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;

View File

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