use correct ConnectivityTag typedef for PolyMeshT

This commit is contained in:
Janis Born
2017-07-31 10:32:11 +02:00
parent f9a1cc930c
commit c4fdb6a264

View File

@@ -104,7 +104,7 @@ public:
/// 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)
static constexpr bool is_polymesh() { return true; }
static constexpr bool is_trimesh() { return false; }
using ConnectivityTag = TriConnectivityTag;
using ConnectivityTag = PolyConnectivityTag;
enum { IsPolyMesh = 1 };
enum { IsTriMesh = 0 };
//@}