findLineIntersection

fun findLineIntersection(m1: Float, b1: Float, m2: Float, b2: Float): Offset?

Used to compute the intersection point of the lines

Parameters

m1

: slop of line 1

b1

: y intercept of line 1

m2

: slop of line 2

b2

: y intercept of line 2