From 23bf459eff5d87ab9ec5023ea7c7a4d59e8db5a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Fri, 7 Sep 2012 16:37:29 +0000 Subject: [PATCH] Updated garbage collection documentation git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@660 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Core/Mesh/ArrayKernel.hh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/OpenMesh/Core/Mesh/ArrayKernel.hh b/src/OpenMesh/Core/Mesh/ArrayKernel.hh index 2fc9d2c3..7ff28697 100644 --- a/src/OpenMesh/Core/Mesh/ArrayKernel.hh +++ b/src/OpenMesh/Core/Mesh/ArrayKernel.hh @@ -282,13 +282,14 @@ public: * Only when you call garbage collection, they will be actually removed. * * \note Garbage collection invalidates all handles. If you need to keep track of - * a set of handles, you can pass them to this function and they will get updated. + * a set of handles, you can pass them to this function. The handles that the + * given pointers point to are updated in place. * * * - * @param vh_to_update Vertex handles that should get updated - * @param hh_to_update Halfedge handles that should get updated - * @param fh_to_update Face handles that should get updated + * @param vh_to_update Pointers to vertex handles that should get updated + * @param hh_to_update Pointers to halfedge handles that should get updated + * @param fh_to_update Pointers to face handles that should get updated * @param _v Remove deleted vertices? * @param _e Remove deleted edges? * @param _f Remove deleted faces?