From 2edd3f7efd5313379140e9dea51c994e903fe60d Mon Sep 17 00:00:00 2001 From: dmv Date: Fri, 30 Nov 2007 06:09:24 +0000 Subject: [PATCH] Correct error in PointOnLinesIntersection --- src/GEOM_SWIG/geompy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2