From: dmv Date: Fri, 30 Nov 2007 06:09:24 +0000 (+0000) Subject: Correct error in PointOnLinesIntersection X-Git-Tag: V3_2_9rc2~5 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2edd3f7efd5313379140e9dea51c994e903fe60d;p=modules%2Fgeom.git Correct error in PointOnLinesIntersection --- diff --git a/src/GEOM_SWIG/geompy.py b/src/GEOM_SWIG/geompy.py index 2120bb0a6..7ba06567f 100644 --- a/src/GEOM_SWIG/geompy.py +++ b/src/GEOM_SWIG/geompy.py @@ -209,7 +209,7 @@ def MakeVertexOnCurve(theRefCurve, theParameter): # # Example: see GEOM_TestAll.py def MakeVertexOnLinesIntersection(theRefLine1, theRefLine2): - anObj = BasicOp.MakePointOnCurve(theRefLine1, theRefLine2) + anObj = BasicOp.MakePointOnLinesIntersection(theRefLine1, theRefLine2) RaiseIfFailed("MakePointOnLinesIntersection", BasicOp) return anObj