]> SALOME platform Git repositories - plugins/blsurfplugin.git/commitdiff
Salome HOME
0023214: EDF 12190 - SetChordalError : no help
authoreap <eap@opencascade.com>
Fri, 15 Jan 2016 15:41:01 +0000 (18:41 +0300)
committereap <eap@opencascade.com>
Fri, 15 Jan 2016 15:41:01 +0000 (18:41 +0300)
src/BLSURFPlugin/BLSURFPluginBuilder.py

index f06850f72f37704dbb05219f267b802e8d198cc3..b23139433d2055f366a1fc0a7889e7d1b2f6cf95 100644 (file)
@@ -151,6 +151,12 @@ class BLSURF_Algorithm(Mesh_Algorithm):
     self.Parameters().SetAngleMesh(theVal)
     pass
 
+  ## Sets the maximum desired distance between a triangle and its supporting CAD surface
+  #  @param distance the distance between a triangle and a surface
+  def SetChordalError(self, distance):
+    self.Parameters().SetChordalError(distance)
+    pass
+
   ## Sets maximal allowed ratio between the lengths of two adjacent edges.
   #  @param theVal value of maximal length ratio
   def SetGradation(self, theVal=_gradation):