object with properties:
Find the intersection of two lines. Lines can be lines/rays/segments, and can be inclusive or exclusive in terms of their endpoints and the epsilon value.
// intersect two lines
const { a, b, point } = intersectLine(line1, line2);
// intersect a line and a segment
const { a, b, point } = intersectLine(line, segment, ear.math.includeL, ear.math.includeS);
line object with "vector" and "origin"