| 94 | FSegment(const FVector& InA, const FVector& InB, const double Expansion = 0); |
| 95 | |
| 96 | double Dot(const FVector& InDirection) const { return FVector::DotProduct(Direction, InDirection); } |
| 97 | FVector Lerp(const double InLerp) const { return FMath::Lerp(A, B, InLerp); } |
| 98 | |
| 99 | template <EIntersectionTestMode Mode = EIntersectionTestMode::Strict> |
nothing calls this directly
no test coverage detected