Get intersection point between 2 lines (4 vectors)

if anyone still needs this
This can be achieved by using

-> FMath::SegmentIntersection2D(SegmentStartA, SegmentEndA, SegmentStartB, SegmentEndB, out_IntersectionPoint);

You can also expose this function to bp through your custom C++ class

But remember those are segments not Lines!

1 Like