From 52d0ebba324ec81b8aee2379678c8722d0a1c88d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Mon, 26 Jan 2015 07:58:37 +0000 Subject: [PATCH] Added extra hint about status flags when collapsing edges git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1211 fdac6126-5c0c-442c-9429-916003d36597 --- Doc/operations.docu | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/operations.docu b/Doc/operations.docu index bb047dd5..bbad5708 100644 --- a/Doc/operations.docu +++ b/Doc/operations.docu @@ -78,6 +78,11 @@ A simple code example related to the illustration might look like this: \code PolyMesh mesh; +// You need all status attributes to do delete operations +mesh.request_edge_status(); +mesh.request_vertex_status(); +mesh.request_face_status(); + // Add some vertices as in the illustration above PolyMesh::VertexHandle vhandle[7];