From: Nabil Ghodbane Date: Sun, 13 Feb 2022 10:55:54 +0000 (+0100) Subject: spns #19079: partition x,y,z parameters X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=54a301e3c29561ec16e66922e74e423771b3a879;p=modules%2Fsmesh.git spns #19079: partition x,y,z parameters --- diff --git a/src/Tools/TopIIVolMeshPlug/TopIIVolMeshPluginDialog.py b/src/Tools/TopIIVolMeshPlug/TopIIVolMeshPluginDialog.py index 91988c1ee..bc1f20dc0 100644 --- a/src/Tools/TopIIVolMeshPlug/TopIIVolMeshPluginDialog.py +++ b/src/Tools/TopIIVolMeshPlug/TopIIVolMeshPluginDialog.py @@ -112,8 +112,8 @@ class TopIIVolMeshPluginDialog(Ui_TopIIVolMeshMainFrame,QWidget): shellCmd+= " --zpoints " + str(zPoints) shellCmd+= " --depth " + str(depth) shellCmd+= " --partition_x " + str(xParts) - shellCmd+= " --partition_y " + str(xParts) - shellCmd+= " --partition_z " + str(xParts) + shellCmd+= " --partition_y " + str(yParts) + shellCmd+= " --partition_z " + str(zParts) shellCmd+= " --in " + inputMesh if platform.system()=="Windows" : self.SALOME_TMP_DIR = os.getenv("SALOME_TMP_DIR")