mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-12 09:40:35 +05:00
0021823: [CEA 649] Compute failed without any errors
+ COMPERR_NO_MESH_ON_SHAPE // no mesh elements assigned to sub-mesh
This commit is contained in:
parent
935b0458ec
commit
1cd00806c9
@ -101,7 +101,8 @@ module SMESH
|
|||||||
COMPERR_ALGO_FAILED , // computation failed
|
COMPERR_ALGO_FAILED , // computation failed
|
||||||
COMPERR_BAD_SHAPE , // bad geometry
|
COMPERR_BAD_SHAPE , // bad geometry
|
||||||
COMPERR_WARNING , // algo reports error but sub-mesh is computed anyway
|
COMPERR_WARNING , // algo reports error but sub-mesh is computed anyway
|
||||||
COMPERR_CANCELED // compute canceled
|
COMPERR_CANCELED , // compute canceled
|
||||||
|
COMPERR_NO_MESH_ON_SHAPE // no mesh elements assigned to sub-mesh
|
||||||
};
|
};
|
||||||
struct ComputeError
|
struct ComputeError
|
||||||
{
|
{
|
||||||
|
@ -50,7 +50,8 @@ enum SMESH_ComputeErrorName
|
|||||||
COMPERR_ALGO_FAILED = -8, //!< algo failed for some reason
|
COMPERR_ALGO_FAILED = -8, //!< algo failed for some reason
|
||||||
COMPERR_BAD_SHAPE = -9, //!< bad geometry
|
COMPERR_BAD_SHAPE = -9, //!< bad geometry
|
||||||
COMPERR_WARNING = -10, //!< algo reports error but sub-mesh is computed anyway
|
COMPERR_WARNING = -10, //!< algo reports error but sub-mesh is computed anyway
|
||||||
COMPERR_CANCELED = -11 //!< compute canceled
|
COMPERR_CANCELED = -11, //!< compute canceled
|
||||||
|
COMPERR_NO_MESH_ON_SHAPE = -12 //!< no mesh elements assigned to sub-shape
|
||||||
};
|
};
|
||||||
|
|
||||||
// =============================================================
|
// =============================================================
|
||||||
|
Loading…
Reference in New Issue
Block a user