mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-11 16:27:28 +05:00
PAL11200. SMESH::HYP_BAD_SUBSHAPE status added
This commit is contained in:
parent
df3619cd79
commit
a32a7716fb
@ -119,7 +119,8 @@ module SMESH
|
||||
HYP_INCOMPATIBLE, // hypothesis does not fit algo
|
||||
HYP_NOTCONFORM, // not conform mesh is produced appling a hypothesis
|
||||
HYP_ALREADY_EXIST,// such hypothesis already exist
|
||||
HYP_BAD_DIM // bad dimension
|
||||
HYP_BAD_DIM, // bad dimension
|
||||
HYP_BAD_SUBSHAPE // shape is neither the main one, nor its subshape, nor a group
|
||||
};
|
||||
|
||||
/*!
|
||||
|
@ -112,6 +112,8 @@ class Mesh_Algorithm:
|
||||
reason = hypType + " mismatches shape"
|
||||
elif status == SMESH.HYP_CONCURENT :
|
||||
reason = "there are concurrent hypotheses on sub-shapes"
|
||||
elif status == SMESH.HYP_BAD_SUBSHAPE :
|
||||
reason = "shape is neither the main one, nor its subshape, nor a valid group"
|
||||
else:
|
||||
return
|
||||
hypName = '"' + hypName + '"'
|
||||
|
Loading…
x
Reference in New Issue
Block a user