removed a couple of forgotted debug ply exporting calls

This commit is contained in:
Paolo Cignoni 2014-02-13 16:30:41 +00:00
parent bbae89aa94
commit 7600fc3ffb
1 changed files with 2 additions and 2 deletions

View File

@ -613,9 +613,9 @@ static void ConvertVoronoiDiagramToMesh(MeshType &m,
if(face::FFLinkCondition(*fi, i))
{
printf("collapse %i\n",tri::Index(outMesh,fi->V(i)));
tri::io::ExporterPLY<MeshType>::Save(outMesh,"pre.ply");
// tri::io::ExporterPLY<MeshType>::Save(outMesh,"pre.ply");
face::FFEdgeCollapse(outMesh, *fi,i);
tri::io::ExporterPLY<MeshType>::Save(outMesh,"post.ply");
// tri::io::ExporterPLY<MeshType>::Save(outMesh,"post.ply");
break;
}
}