From: gdd Date: Thu, 6 Jan 2011 12:55:12 +0000 (+0000) Subject: RNC: added MakeVertexOnCurveByLength in test scripts X-Git-Tag: Start_BR_19998_21191~91 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=55bd653b5b2d1260c5d5b6329ad94a52f4a7be04;p=modules%2Fgeom.git RNC: added MakeVertexOnCurveByLength in test scripts --- diff --git a/src/GEOM_SWIG/GEOM_TestAll.py b/src/GEOM_SWIG/GEOM_TestAll.py index 6637f15d5..2b22e3f7a 100644 --- a/src/GEOM_SWIG/GEOM_TestAll.py +++ b/src/GEOM_SWIG/GEOM_TestAll.py @@ -114,6 +114,7 @@ def TestAll (geompy, math): #Test point on curve creation p_on_arc = geompy.MakeVertexOnCurve(Arc, 0.25) #(GEOM_Object_ptr, Double)->GEOM_Object_ptr p_on_arc2 = geompy.MakeVertexOnCurveByCoord(Arc, 100, -10, 10 ) #(GEOM_Object_ptr, Double)->GEOM_Object_ptr + p_on_arc3 = geompy.MakeVertexOnCurveByLength(Arc, 50, 2) #(GEOM_Object_ptr, Double, Double)->GEOM_Object_ptr #Test point on lines intersection p_on_l1l2 = geompy.MakeVertexOnLinesIntersection(Line1, Line2) #(2 GEOM_Object_ptr)->GEOM_Object_ptr