document that DecimaterT::decimate does not perform garbage collection on the mesh

This commit is contained in:
Janis Born
2016-07-22 16:34:39 +02:00
parent c9510459ca
commit e029d33c2a
3 changed files with 41 additions and 31 deletions

View File

@@ -39,7 +39,7 @@
// If halfedge is boundary, lock the corresponding vertices
for (he_it = mesh_->halfedges_begin(); he_it != he_end ; ++he_it)
if (mesh_->is_boundary(*he_it) ) {
if (mesh_->is_boundary(*he_it)) {
mesh_->status(_mesh->to_vertex_handle(*he_it)).set_locked(true);
mesh_->status(_mesh->from_vertex_handle(*he_it)).set_locked(true);
}