From: eap Date: Wed, 27 Feb 2008 14:09:36 +0000 (+0000) Subject: PAL19022 MakeFilling: can't create a closed face X-Git-Tag: V4_1_1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=32282d0dc0c8681bf0a7e5499299620b1d249e74;p=modules%2Fgeom.git PAL19022 MakeFilling: can't create a closed face improve description of arguments of MakeFilling() --- diff --git a/idl/GEOM_Gen.idl b/idl/GEOM_Gen.idl index de4600e27..4c30ee600 100644 --- a/idl/GEOM_Gen.idl +++ b/idl/GEOM_Gen.idl @@ -892,11 +892,11 @@ module GEOM /*! * Create a filling from the given compound of contours. - * \param theMinDeg a minimal degree - * \param theMaxDeg a maximal degree - * \param theTol2D a 2d tolerance - * \param theTol3D a 3d tolerance - * \param theNbIter a number of iteration + * \param theMinDeg a minimal degree of BSpline surface to create + * \param theMaxDeg a maximal degree of BSpline surface to create + * \param theTol2D a 2d tolerance to be reached + * \param theTol3D a 3d tolerance to be reached + * \param theNbIter a number of iteration of approximation algorithm * \return New GEOM_Object, containing the created filling surface. */ GEOM_Object MakeFilling (in GEOM_Object theShape, diff --git a/src/GEOM_SWIG/geompyDC.py b/src/GEOM_SWIG/geompyDC.py index 20a6e120c..5853af966 100644 --- a/src/GEOM_SWIG/geompyDC.py +++ b/src/GEOM_SWIG/geompyDC.py @@ -1390,11 +1390,11 @@ class geompyDC(GEOM._objref_GEOM_Gen): ## Create a filling from the given compound of contours. # @param theShape the compound of contours - # @param theMinDeg a minimal degree - # @param theMaxDeg a maximal degree - # @param theTol2D a 2d tolerance - # @param theTol3D a 3d tolerance - # @param theNbIter a number of iteration + # @param theMinDeg a minimal degree of BSpline surface to create + # @param theMaxDeg a maximal degree of BSpline surface to create + # @param theTol2D a 2d tolerance to be reached + # @param theTol3D a 3d tolerance to be reached + # @param theNbIter a number of iteration of approximation algorithm # @return New GEOM_Object, containing the created filling surface. # # Example: see GEOM_TestAll.py