Oops, this has a different interface to the curve-based ones
This commit is contained in:
parent
01957a9b94
commit
c17b1c9e9f
@ -1127,7 +1127,7 @@ def segmentSegmentIntersections(seg1, seg2):
|
|||||||
else:
|
else:
|
||||||
return curveLineIntersections(seg1, seg2)
|
return curveLineIntersections(seg1, seg2)
|
||||||
elif len(seg1) == 2 and len(seg2) == 2:
|
elif len(seg1) == 2 and len(seg2) == 2:
|
||||||
return lineLineIntersections(seg1, seg2)
|
return lineLineIntersections(*seg1, *seg2)
|
||||||
raise ValueError("Couldn't work out which intersection function to use")
|
raise ValueError("Couldn't work out which intersection function to use")
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user