Open MatthiasJ1 opened 9 months ago
Both examples intersect at 0,0
Returns intersection
a = Line(-1,0) b = Line((0,0),(0,1)) isect = a.intersect(b)
Does not return intersection
a = Line(-1,0) b = Line((0,0),(1,0)) isect = a.intersect(b)
Part of #328
Both examples intersect at 0,0
Returns intersection
Does not return intersection