From c8190efd7aca1a3b68a1e20d8b2029c96c103c33 Mon Sep 17 00:00:00 2001 From: eap Date: Mon, 14 Apr 2014 15:58:26 +0400 Subject: [PATCH] 22547: [CEA 1128] Problem with use of "isRelative" after a dump - Pb 3: "BLSURF.SetMaxSize" has no argument "isRelative". --- src/BLSURFPlugin/BLSURFPluginBuilder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BLSURFPlugin/BLSURFPluginBuilder.py b/src/BLSURFPlugin/BLSURFPluginBuilder.py index c905fd8..299e5b6 100644 --- a/src/BLSURFPlugin/BLSURFPluginBuilder.py +++ b/src/BLSURFPlugin/BLSURFPluginBuilder.py @@ -133,7 +133,7 @@ class BLSURF_Algorithm(Mesh_Algorithm): ## Sets upper boundary of mesh element size. # @param theVal : global maximal cell size desired. # @param isRelative : if True, the value is relative to the length of the diagonal of the bounding box - def SetMaxSize(self, theVal=-1): + def SetMaxSize(self, theVal=-1, isRelative = False): if isRelative: self.Parameters().SetMaxSizeRel(theVal) else: -- 2.39.2