Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FMath
Description
Find closest points between 2 segments.
If either segment may have a length of 0, use SegmentDistToSegmentSafe instance.
| Name | SegmentDistToSegment |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/UnrealMathUtility.h |
| Include Path | #include "Math/UnrealMathUtility.h" |
| Source | /Engine/Source/Runtime/Core/Private/Math/UnrealMath.cpp |
static void SegmentDistToSegment
(
FVector A1,
FVector B1,
FVector A2,
FVector B2,
FVector & OutP1,
FVector & OutP2
)
Parameters
| Name | Remarks |
|---|---|
| (A1, B1) | defines the first segment. |
| (A2, B2) | defines the second segment. |
| OutP1 | Closest point on segment 1 to segment 2. |
| OutP2 | Closest point on segment 2 to segment 1. |