Renamed VertexTMark into EmptyMark to reflect its nature (do nothing) and be easier to be used in other context (e.g. as a dummy marker functor for edges)

This commit is contained in:
Paolo Cignoni 2015-12-03 22:58:23 +00:00
parent 13b1a8f1d9
commit 1cd0321916
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ template<class MESH_TYPE> class OverlapEstimation
typedef typename MeshType::VertexIterator VertexIterator;
typedef typename vector<VertexPointer>::iterator VertexPointerIterator;
typedef GridStaticPtr<VertexType, ScalarType > MeshGrid;
typedef tri::VertTmark<MeshType> MarkerVertex;
typedef tri::EmptyTMark<MeshType> MarkerVertex;
private:
/** Private simple class needed to perform sampling of pointers to vertexes. */