mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 01:58:35 +05:00
0021459: EDF 1495 SMESH: Manipulation of discrete elements with attributes
+ GROUP_BALL,
This commit is contained in:
parent
e519caf020
commit
b6c4d708d5
@ -56,6 +56,7 @@ enum MeshObjectType {
|
||||
GROUP_FACE,
|
||||
GROUP_VOLUME,
|
||||
GROUP_0D,
|
||||
GROUP_BALL,
|
||||
COMPONENT,
|
||||
IDSOURCE
|
||||
};
|
||||
|
@ -199,7 +199,13 @@ bool SMESH_TypeFilter::isOk (const SUIT_DataOwner* theDataOwner) const
|
||||
}
|
||||
case GROUP_0D:
|
||||
{
|
||||
if (aLevel == 3 && (objFather->Tag() == SMESH::Tag_VolumeGroups+1))
|
||||
if (aLevel == 3 && (objFather->Tag() == SMESH::Tag_0DElementsGroups))
|
||||
Ok = true;
|
||||
break;
|
||||
}
|
||||
case GROUP_BALL:
|
||||
{
|
||||
if (aLevel == 3 && (objFather->Tag() == SMESH::Tag_BallElementsGroups))
|
||||
Ok = true;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user