mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-25 08:50:35 +05:00
0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups
+ interface SMESH_GroupOnFilter : SMESH_GroupBase
This commit is contained in:
parent
db6959b647
commit
5e4bdb2eed
@ -36,6 +36,7 @@
|
|||||||
module SMESH
|
module SMESH
|
||||||
{
|
{
|
||||||
interface Predicate;
|
interface Predicate;
|
||||||
|
interface Filter;
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* SMESH_Group: base interface of group object
|
* SMESH_Group: base interface of group object
|
||||||
@ -138,14 +139,24 @@ module SMESH
|
|||||||
long RemoveByPredicate( in Predicate thePredicate );
|
long RemoveByPredicate( in Predicate thePredicate );
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* SMESH_Group: interface of group object linked to geometry
|
* SMESH_GroupOnGeom: interface of group object linked to geometry
|
||||||
*/
|
*/
|
||||||
interface SMESH_GroupOnGeom : SMESH_GroupBase
|
interface SMESH_GroupOnGeom : SMESH_GroupBase
|
||||||
{
|
{
|
||||||
GEOM::GEOM_Object GetShape();
|
GEOM::GEOM_Object GetShape();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* SMESH_GroupOnFilter: interface of group object defined by filter
|
||||||
|
*/
|
||||||
|
interface SMESH_GroupOnFilter : SMESH_GroupBase
|
||||||
|
{
|
||||||
|
void SetFilter( in Filter theFilter);
|
||||||
|
Filter GetFilter();
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user