From bf84ecd69a38eae6dea0756e8c01fc7dce2ee0ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Thu, 24 Sep 2009 09:46:58 +0000 Subject: [PATCH] Documentation for the functions is_trimesh and is_polymesh git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@207 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Core/Mesh/PolyMeshT.hh | 2 +- src/OpenMesh/Core/Mesh/TriMeshT.hh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenMesh/Core/Mesh/PolyMeshT.hh b/src/OpenMesh/Core/Mesh/PolyMeshT.hh index 529b012f..c74ef93e 100644 --- a/src/OpenMesh/Core/Mesh/PolyMeshT.hh +++ b/src/OpenMesh/Core/Mesh/PolyMeshT.hh @@ -93,7 +93,7 @@ public: //--- item types --- //@{ - /// Determine whether this is a PolyMeshT or TriMeshT + /// Determine whether this is a PolyMeshT or TriMeshT ( This function does not check the per face vertex count! It only checks if the datatype is PolyMeshT or TriMeshT ) enum { IsPolyMesh = 1 }; enum { IsTriMesh = 0 }; static bool is_polymesh() { return true; } diff --git a/src/OpenMesh/Core/Mesh/TriMeshT.hh b/src/OpenMesh/Core/Mesh/TriMeshT.hh index 4ca5fd7f..9cf1003e 100644 --- a/src/OpenMesh/Core/Mesh/TriMeshT.hh +++ b/src/OpenMesh/Core/Mesh/TriMeshT.hh @@ -96,7 +96,7 @@ public: typedef PolyMeshT PolyMesh; //@{ - /// Determine whether this is a PolyMeshT or TriMeshT + /// Determine whether this is a PolyMeshT or TriMeshT ( This function does not check the per face vertex count! It only checks if the datatype is PolyMeshT or TriMeshT ) enum { IsPolyMesh = 0 }; enum { IsTriMesh = 1 }; static bool is_polymesh() { return false; }