`getPointAtLength` returns incorrect value for length exactly on segment intersections. I think the culprit is the if statement ```ts // native `getPointAtLength` behavior when the given distance // is higher than total length if (distance > totalLength - DISTANCE_EPSILON) { return { x, y }; } ``` that should only go through if we're at the end of sub path, not at the end of any individual segment.