get_intersection¶
- tfv.geometry.get_intersection(a, b, c, d)¶
Gets parameters for intersections of lines AB and lines CD.
- Parameters:
a (tuple) – Point A as tuple (x, y) of lines AB
b (tuple) – Point B as tuple (x, y) of lines AB
c (tuple) – Point C as tuple (x, y) of lines CD
d (tuple) – Point D as tuple (x, y) of lines CD
- Returns:
x – Line intersection parameters
- Return type:
tuple (t, u, lc, rc, lgi)