| 210 | } |
| 211 | |
| 212 | FVector GetNormal(const FVector& A, const FVector& B, const FVector& C) |
| 213 | { |
| 214 | return FVector::CrossProduct((B - A), (C - A)).GetSafeNormal(); |
| 215 | } |
| 216 | |
| 217 | FVector GetNormalUp(const FVector& A, const FVector& B, const FVector& Up) |
| 218 | { |
no outgoing calls
no test coverage detected