mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-25 19:22:03 +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_INCOMPATIBLE, // hypothesis does not fit algo
|
||||||
HYP_NOTCONFORM, // not conform mesh is produced appling a hypothesis
|
HYP_NOTCONFORM, // not conform mesh is produced appling a hypothesis
|
||||||
HYP_ALREADY_EXIST,// such hypothesis already exist
|
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"
|
reason = hypType + " mismatches shape"
|
||||||
elif status == SMESH.HYP_CONCURENT :
|
elif status == SMESH.HYP_CONCURENT :
|
||||||
reason = "there are concurrent hypotheses on sub-shapes"
|
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:
|
else:
|
||||||
return
|
return
|
||||||
hypName = '"' + hypName + '"'
|
hypName = '"' + hypName + '"'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user