removed a survived debug printf...

This commit is contained in:
Paolo Cignoni 2013-10-09 09:18:56 +00:00
parent afec01ce96
commit 93eb66356b
1 changed files with 0 additions and 1 deletions

View File

@ -481,7 +481,6 @@ void FFEdgeCollapse(MeshType &m, typename MeshType::FaceType &f, const int z)
// Final Pass to update the vertex ptrs in all the involved faces
for(size_t i=0;i<faceToBeChanged.size();++i) {
assert(faceToBeChanged[i].V() == delV);
printf("Changing face %i of vert %i\n",tri::Index(m,faceToBeChanged[i].F()),tri::Index(m,faceToBeChanged[i].V()));
faceToBeChanged[i].F()->V(faceToBeChanged[i].VInd()) =surV;
}