#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

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