#17013 [CEA 17006] Meshing a compsolid with one internal vertex per face

This commit is contained in:
eap 2019-07-01 13:35:28 +03:00
parent 9b65ce0c47
commit 3f88168d83

View File

@ -82,9 +82,9 @@ struct Triangulate::PolyVertex
// compare PolyVertex'es by node // compare PolyVertex'es by node
bool operator()(const PolyVertex* a, const PolyVertex* b) const bool operator()(const PolyVertex* a, const PolyVertex* b) const
{ {
return ( a->_nxyz.Node() < b->_nxyz.Node() ); return ( a->_nxyz.Node() < b->_nxyz.Node() );
} }
// set of PolyVertex sorted by mesh node // set of PolyVertex sorted by mesh node
typedef boost::container::flat_set< PolyVertex*, PolyVertex > PVSet; typedef boost::container::flat_set< PolyVertex*, PolyVertex > PVSet;
}; };