Correct error in PointOnLinesIntersection

This commit is contained in:
dmv 2007-11-30 06:09:24 +00:00
parent 0534a9112e
commit 2edd3f7efd

View File

@ -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