Small changes to the texdeci sample (better depend path and corrected saving)
This commit is contained in:
parent
0941ea0474
commit
62a5d3856d
|
@ -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;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#DEFINES += VCG_USE_EIGEN
|
||||
TARGET = texdeci
|
||||
#LIBPATH +=
|
||||
DEPENDPATH += .
|
||||
DEPENDPATH += . ../..
|
||||
INCLUDEPATH += . ../..
|
||||
CONFIG += console stl debug_and_release
|
||||
TEMPLATE = app
|
||||
|
|
Loading…
Reference in New Issue