(a, b, c, d)
| 87 | |
| 88 | # Function: Check if Line Segments (a-b) and (c-d) Intersects |
| 89 | def lines_intersection(a, b, c, d): |
| 90 | return bounding_boxes_intersection and line_segment_cross(a, b, c, d) and line_segment_cross(c, d, a, b) |
| 91 | |
| 92 | ############################################################################ |
| 93 |
no test coverage detected