Test for typo case

This commit is contained in:
Simon Cozens 2021-09-23 08:15:57 +01:00
parent ed0cf2fa92
commit d9ce420967

View File

@ -160,3 +160,7 @@ def test_intersections_straight_line():
line = (pt, (330, 286))
pt2 = (330.0001018806911, 295.5635754579425)
assert bezierTools._line_t_of_pt(*line, pt2) > 0
s = (19, 0)
e = (110, 0)
pt = (109.05194805194802, 0.0)
assert bezierTools._line_t_of_pt(s, e, pt) == pytest.approx(0.98958184)