From 33a162e09bc9d8ba306f3a3fd5d9ac05be513a23 Mon Sep 17 00:00:00 2001 From: Mike Kremer Date: Mon, 23 Nov 2009 12:44:26 +0000 Subject: [PATCH] Corrected doc in order to avoid doxygen warning git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@237 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Core/Mesh/PolyMeshT.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OpenMesh/Core/Mesh/PolyMeshT.hh b/src/OpenMesh/Core/Mesh/PolyMeshT.hh index c74ef93e..749bf750 100644 --- a/src/OpenMesh/Core/Mesh/PolyMeshT.hh +++ b/src/OpenMesh/Core/Mesh/PolyMeshT.hh @@ -239,11 +239,11 @@ public: Normal calc_vertex_normal(VertexHandle _vh) const; /** Different methods for calculation of the normal at _vh: - - -"-_fast - the default one - the same as calc vertex_normal() + - ..._fast - the default one - the same as calc vertex_normal() - needs the Attributes::Normal attribute for faces - - -"-_correct - works properly for non-triangular meshes + - ..._correct - works properly for non-triangular meshes - does not need any attributes - - -"-_loop - calculates loop surface normals + - ..._loop - calculates loop surface normals - does not need any attributes */ void calc_vertex_normal_fast(VertexHandle _vh, Normal& _n) const; void calc_vertex_normal_correct(VertexHandle _vh, Normal& _n) const;