Salome HOME
PAL10953. Add Fineness parameter to Automatic Length hypothesis
[modules/smesh.git] / idl / SMESH_Hypothesis.idl
index 6389d724f811644b8a132379295e39f9e92dcea9..69832b9ed37f854750ebba69bb4c9084b9e8c660 100644 (file)
 
 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;