mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-11 16:19:16 +05:00
Dimension enumeration and IsDimSupported method added
This commit is contained in:
parent
3ee8318e9b
commit
fd1707fca8
@ -31,6 +31,13 @@
|
||||
|
||||
module SMESH
|
||||
{
|
||||
enum Dimension
|
||||
{
|
||||
DIM_1D,
|
||||
DIM_2D,
|
||||
DIM_3D
|
||||
};
|
||||
|
||||
interface SMESH_Hypothesis : SALOME::GenericObj
|
||||
{
|
||||
/*!
|
||||
@ -47,6 +54,11 @@ module SMESH
|
||||
* Get the internal Id
|
||||
*/
|
||||
long GetId();
|
||||
|
||||
/*!
|
||||
* Verify whether hypothesis supports given entity type
|
||||
*/
|
||||
boolean IsDimSupported( in Dimension type );
|
||||
};
|
||||
|
||||
typedef sequence<string> ListOfHypothesisName;
|
||||
|
Loading…
Reference in New Issue
Block a user