Salome HOME
Changes for 0020673 - Implementation of "Auto-correct edges orientation".
[modules/geom.git] / src / GEOMImpl / GEOMImpl_IFilling.hxx
index 491555e48c59a1b7bd53c9c8ef978f0ff5737b31..c24aa969283ce2fa21dd112e77979c8ed8511fb7 100644 (file)
@@ -30,6 +30,7 @@
 #define FILL_ARG_SHAPE    5
 #define FILL_ARG_NBITER   6
 #define FILL_ARG_APPROX   7
+#define FILL_ARG_METHOD   8
 
 class GEOMImpl_IFilling
 {
@@ -52,6 +53,9 @@ class GEOMImpl_IFilling
   void SetApprox(bool theApprox) { _func->SetInteger(FILL_ARG_APPROX, theApprox); }
   bool GetApprox() { return _func->GetInteger(FILL_ARG_APPROX); } 
 
+  void SetMethod(int theMethod) { _func->SetInteger(FILL_ARG_METHOD, theMethod); }
+  int GetMethod() { return _func->GetInteger(FILL_ARG_METHOD); } 
+
   void SetShape(Handle(GEOM_Function) theShape) { _func->SetReference(FILL_ARG_SHAPE, theShape); }
   Handle(GEOM_Function) GetShape() { return _func->GetReference(FILL_ARG_SHAPE); }