]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Fix error in documentation
authorJérôme <jerome.lucas@cesgenslab.fr>
Fri, 6 Nov 2020 16:37:58 +0000 (17:37 +0100)
committerJérôme <jerome.lucas@cesgenslab.fr>
Fri, 6 Nov 2020 16:37:58 +0000 (17:37 +0100)
src/ExchangePlugin/doc/examples/export.py
src/ExchangePlugin/doc/examples/exportSTL.py
src/ExchangePlugin/doc/exportFeature.rst

index feb8372520bab434f1c222b8aa1bffa0f9c04648..1f9b7c2b5e125854519004e7cb67e49a3c5f198e 100644 (file)
@@ -1,11 +1,13 @@
 from salome.shaper import model
+import os 
 
 model.begin()
+file_path = os.path.join(os.getenv("DATA_DIR"), "test.step")
 partSet = model.moduleDocument()
 Part_1 = model.addPart(partSet)
 Part_1_doc = Part_1.document()
 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
-Export_1 = model.exportToFile(Part_1_doc, "/dn48/newgeom/vsv/test.step",
+Export_1 = model.exportToFile(Part_1_doc, file_path,
                               [model.selection("SOLID", "Box_1_1")])
 model.do()
 model.end()
index 01c1aa8422ac215c2e02e9bbe35d4717448facd4..79f1ed5175352123675064bbbc2c2299506ef46f 100644 (file)
@@ -1,11 +1,12 @@
 from salome.shaper import model
 
 model.begin()
+file_path = os.path.join(os.getenv("DATA_DIR"), "test.stl")
 partSet = model.moduleDocument()
 Part_1 = model.addPart(partSet)
 Part_1_doc = Part_1.document()
 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
-Export_1 = model.exportToSTL(Part_1_doc, "/dn48/newgeom/vsv/test.stl",
-                              [model.selection("SOLID", "Box_1_1")],0.0001,0.5,"True","False")
+Export_1 = model.exportToSTL(Part_1_doc, file_path,
+                              model.selection("SOLID", "Box_1_1"),0.0001,0.5,True,False)
 model.do()
 model.end()
index be71349ab73a84d395ffcc68278d4249eff18a5b..5867d1bf5081ca6d543f88349660022aa6c7fa82 100644 (file)
@@ -158,11 +158,11 @@ The file name and path can be defined in **Export file**  field by direct input
 
     :param part: The current part object
     :param string: The file name
-    :param selectedShape: An exporting object
-    :param relative: value of the relative deflection
-    :param absolute: value of the absolute deflection
-    :param isRelative: indicate if use deflection relative
-    :param isASCII: indicate if the file is in ASCII type 
+    :param object: An exporting object
+    :param real: value of the relative deflection
+    :param real: value of the absolute deflection
+    :param boolean: indicate if use deflection relative
+    :param boolean: indicate if the file is in ASCII type 
 
 Result
 """"""