spns #19079: partition x,y,z parameters

This commit is contained in:
Nabil Ghodbane 2022-02-13 11:55:54 +01:00
parent d83b63b2c3
commit 54a301e3c2

View File

@ -112,8 +112,8 @@ class TopIIVolMeshPluginDialog(Ui_TopIIVolMeshMainFrame,QWidget):
shellCmd+= " --zpoints " + str(zPoints) shellCmd+= " --zpoints " + str(zPoints)
shellCmd+= " --depth " + str(depth) shellCmd+= " --depth " + str(depth)
shellCmd+= " --partition_x " + str(xParts) shellCmd+= " --partition_x " + str(xParts)
shellCmd+= " --partition_y " + str(xParts) shellCmd+= " --partition_y " + str(yParts)
shellCmd+= " --partition_z " + str(xParts) shellCmd+= " --partition_z " + str(zParts)
shellCmd+= " --in " + inputMesh shellCmd+= " --in " + inputMesh
if platform.system()=="Windows" : if platform.system()=="Windows" :
self.SALOME_TMP_DIR = os.getenv("SALOME_TMP_DIR") self.SALOME_TMP_DIR = os.getenv("SALOME_TMP_DIR")