Extend curve to the nearest curve

Hi,

I have two line.
I would like extend the first one until the second one intersects, but without indicating which is the second one.
In other words, extend to the nearest line. Are there any node to do that?

Have you tried Geometry.DistanceTo and Curve.Extend?

4 Likes

@franciscopossetto

As @awilliams suggested use Geometry.DistanceTo, find the min distance, filter, extend with Springs.LineLoop.Merge

3 Likes

It works, thanks!

1 Like

Thanks for answer me, it works!

1 Like