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];
|
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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue