]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
rnc : updated documentation of MakeCurveParametric
authorgdd <gdd>
Mon, 5 Sep 2011 08:28:28 +0000 (08:28 +0000)
committergdd <gdd>
Mon, 5 Sep 2011 08:28:28 +0000 (08:28 +0000)
doc/salome/gui/GEOM/input/creating_curve.doc
doc/salome/gui/GEOM/input/tui_basic_geom_objs.doc

index aa3019d69dc1b9f9954f22c65e8f9965715eafcd..9c3371826f9c2c6943f738b0b66b7dbd29d7a83a 100644 (file)
@@ -86,10 +86,10 @@ types of curves.
 <li><b>X(t)equation, Y(t)equation, Z(t)equation</b> are python
 expressions for X, Y and Z coordinates of the basic points of the curve.</li>
 <li><b>Min t, Max t</b> are minimum and maximum values of the parameter \b t.</li>
-<li><b>Step</b> is the step of the parameter \b t.</li>
+<li><b>Step</b> is the number of steps of the parameter \b t.</li>
 </ul> 
 
-\n <b>TUI Command:</b> <em>geompy.MakeCurveParametric(XExpr, YExpt, ZExpt, tMin, tMax, tStep, curveType)</em>
+\n <b>TUI Command:</b> <em>geompy.MakeCurveParametric(XExpr, YExpt, ZExpt, tMin, tMax, nbSteps, curveType, True)</em>
 
 \n<b>Advanced options</b> \ref preview_anchor "Preview"
 
index 45136089ec4d5bb042e7e8300b016b920bf9d87e..0cb092228a0c33ed24b13c2a0e3d94785ac3567b 100644 (file)
@@ -230,13 +230,13 @@ bezier = geompy.MakeBezier([p0, p1, p2, p3, p4])
 interpol = geompy.MakeInterpol([p0, p1, p2, p3, p4], False)
 
 #create a polyline using parametric definition of the basic points
-param_polyline = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 5., geompy.GEOM.Polyline)
+param_polyline = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 100, geompy.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., 5., geompy.GEOM.Bezier)
+param_bezier = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 100, geompy.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., 5., geompy.GEOM.Interpolation)
+param_interpol = geompy.MakeCurveParametric("t", "sin(t)", "cos(t)", 0., 100., 100, geompy.GEOM.Interpolation, theNewMethod=True)