mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-14 17:48:34 +05:00
0021014: EDF 1583 SMESH: Improvement of the Python Dump for the creation of groups
+ SMESH_GroupOnFilter CreateGroupFromFilter( in ElementType elemType, + in string name, + in SMESH::Filter filter )
This commit is contained in:
parent
bd284fc142
commit
db6959b647
@ -276,6 +276,8 @@ module SMESH
|
||||
|
||||
interface SMESH_Group;
|
||||
interface SMESH_GroupOnGeom;
|
||||
interface Filter;
|
||||
interface SMESH_GroupOnFilter;
|
||||
interface SMESH_subMesh;
|
||||
interface SMESH_MeshEditor;
|
||||
|
||||
@ -329,15 +331,23 @@ module SMESH
|
||||
* Create a group
|
||||
*/
|
||||
SMESH_Group CreateGroup( in ElementType elem_type,
|
||||
in string name )
|
||||
in string name )
|
||||
raises (SALOME::SALOME_Exception);
|
||||
|
||||
/*!
|
||||
* Create a group from geometry group
|
||||
* Create a group from geometry
|
||||
*/
|
||||
SMESH_GroupOnGeom CreateGroupFromGEOM( in ElementType elem_type,
|
||||
in string name,
|
||||
in GEOM::GEOM_Object theGeomObject )
|
||||
SMESH_GroupOnGeom CreateGroupFromGEOM( in ElementType elemType,
|
||||
in string name,
|
||||
in GEOM::GEOM_Object geomObject )
|
||||
raises (SALOME::SALOME_Exception);
|
||||
|
||||
/*!
|
||||
* Create a group from filter
|
||||
*/
|
||||
SMESH_GroupOnFilter CreateGroupFromFilter( in ElementType elemType,
|
||||
in string name,
|
||||
in SMESH::Filter filter )
|
||||
raises (SALOME::SALOME_Exception);
|
||||
|
||||
/*!
|
||||
@ -434,9 +444,9 @@ module SMESH
|
||||
raises (SALOME::SALOME_Exception);
|
||||
|
||||
/*!
|
||||
* Convert group on geometry into standalone group
|
||||
* Convert group on geometry or on filter into standalone group
|
||||
*/
|
||||
SMESH_Group ConvertToStandalone( in SMESH_GroupOnGeom theGeomGroup )
|
||||
SMESH_Group ConvertToStandalone( in SMESH_GroupBase theGroupOn )
|
||||
raises (SALOME::SALOME_Exception);
|
||||
|
||||
/*!
|
||||
|
Loading…
Reference in New Issue
Block a user