From: gdd Date: Wed, 24 Aug 2011 08:16:19 +0000 (+0000) Subject: PreCAD: add wrapping to SetPreCADOptionValue(optin,value) X-Git-Tag: V6_4_0a1~92 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=852a9879619f50778073e4c452ecae0c8cc4e71f PreCAD: add wrapping to SetPreCADOptionValue(optin,value) --- diff --git a/src/SMESH_SWIG/smeshDC.py b/src/SMESH_SWIG/smeshDC.py index 4ff373b84..2ec2d34e5 100644 --- a/src/SMESH_SWIG/smeshDC.py +++ b/src/SMESH_SWIG/smeshDC.py @@ -5134,6 +5134,13 @@ class Mesh_Triangle(Mesh_Algorithm): # Parameter of BLSURF algo self.params.SetOptionValue(optionName,level) + ## Sets advanced PreCAD option value. + # @ingroup l3_hypos_blsurf + def SetPreCADOptionValue(self, optionName, level): + if self.Parameters(): + # Parameter of BLSURF algo + self.params.SetPreCADOptionValue(optionName,level) + ## Sets GMF file for export at computation # @ingroup l3_hypos_blsurf def SetGMFFile(self, fileName):