diff --git a/src/SMESHUtils/SMESH_MeshAlgos.hxx b/src/SMESHUtils/SMESH_MeshAlgos.hxx index 4d9fba8d9..6a507f1b1 100644 --- a/src/SMESHUtils/SMESH_MeshAlgos.hxx +++ b/src/SMESHUtils/SMESH_MeshAlgos.hxx @@ -258,6 +258,7 @@ namespace SMESH_MeshAlgos * Return sharp edges of faces and non-manifold ones. * Optionally adds existing edges to the result. Angle is in degrees. */ + SMESHUtils_EXPORT std::vector< Edge > FindSharpEdges( SMDS_Mesh* mesh, double angle, bool addExisting ); @@ -265,6 +266,7 @@ namespace SMESH_MeshAlgos /*! * Distribute all faces of the mesh between groups using given edges. */ + SMESHUtils_EXPORT std::vector< std::vector< const SMDS_MeshElement* > > SeparateFacesByEdges( SMDS_Mesh* mesh, const std::vector< Edge >& edges );