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
This commit is contained in:
@@ -93,7 +93,7 @@ public:
|
|||||||
//--- item types ---
|
//--- 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 { IsPolyMesh = 1 };
|
||||||
enum { IsTriMesh = 0 };
|
enum { IsTriMesh = 0 };
|
||||||
static bool is_polymesh() { return true; }
|
static bool is_polymesh() { return true; }
|
||||||
|
|||||||
@@ -96,7 +96,7 @@ public:
|
|||||||
typedef PolyMeshT<Kernel> PolyMesh;
|
typedef PolyMeshT<Kernel> 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 { IsPolyMesh = 0 };
|
||||||
enum { IsTriMesh = 1 };
|
enum { IsTriMesh = 1 };
|
||||||
static bool is_polymesh() { return false; }
|
static bool is_polymesh() { return false; }
|
||||||
|
|||||||
Reference in New Issue
Block a user