]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
PR: debug examples BR_plugins_pbyacs
authorprascle <prascle>
Thu, 21 Mar 2013 10:20:55 +0000 (10:20 +0000)
committerprascle <prascle>
Thu, 21 Mar 2013 10:20:55 +0000 (10:20 +0000)
doc/salome/examples/basic_geom_objs_ex06.py
doc/salome/examples/basic_operations_ex03.py
doc/salome/examples/transformation_operations_ex11.py

index 3ade40d2b90e8b5f08c4262ae5062b34e039399d..661b0edef985ccde8eb6478337aa10b3542a1a78 100644 (file)
@@ -30,13 +30,13 @@ interpol = geompy.MakeInterpol([p0, p1, p2, p3, p4], False)
 interpol_tangents = geompy.MakeInterpolWithTangents([p0, p1, p2, p3, p4], v1, v2)
 
 #create a polyline using parametric definition of the basic points
-param_polyline = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 100, geompy.GEOM.Polyline, theNewMethod=True)
+param_polyline = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 100, GEOM.Polyline, theNewMethod=True)
 
 # create a bezier curve using parametric definition of the basic points
-param_bezier = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 20, geompy.GEOM.Bezier, theNewMethod=True)
+param_bezier = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 20, GEOM.Bezier, theNewMethod=True)
 
 #create a b-spline curve using parametric definition of the basic points
-param_interpol = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 100, geompy.GEOM.Interpolation, theNewMethod=True)
+param_interpol = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 100, GEOM.Interpolation, theNewMethod=True)
 
 
 # add objects in the study
index 09ec3dafd5d3d6eb6ceb5f7fec8383193b2c288b..5fa0e9e0ad94545c2dbafbfae219b69e4e00c8ae 100644 (file)
@@ -5,7 +5,7 @@ salome.salome_init()
 import GEOM
 from salome.geom import geomBuilder
 geompy = geomBuilder.New(salome.myStudy)
-mport SALOMEDS
+import SALOMEDS
 
 # create a box and a cylinder
 box = geompy.MakeBoxDXDYDZ(200, 200, 200)
index 0bf3de12b57e5773105fc643890817aa590d9a7d..a5b6e5b3a030181af212dc8c07161aa6ea968290 100644 (file)
@@ -16,7 +16,9 @@ Wire_1 = geompy.MakeWire([Edge_12, Edge_7, Edge_11, Edge_6, Edge_1,Edge_4])
 # make fillet at given wire vertices with giver radius
 Fillet_1D_1 = geompy.MakeFillet1D(Wire_1, 55, [3, 4, 6, 8, 10])
 
+id_Wire_1 = geompy.addToStudy(Wire_1, "Wire_1")
+id_Fillet_1D_1= geompy.addToStudy(Fillet_1D_1, "Fillet_1D_1")
 
 # display disks
-gg.createAndDisplayGO(Wire_1)
-gg.createAndDisplayGO(Fillet_1D_1)
+gg.createAndDisplayGO(id_Wire_1)
+gg.createAndDisplayGO(id_Fillet_1D_1)