| 215 | } |
| 216 | |
| 217 | FVector GetNormalUp(const FVector& A, const FVector& B, const FVector& Up) |
| 218 | { |
| 219 | return FVector::CrossProduct((B - A), ((B + Up) - A)).GetSafeNormal(); |
| 220 | } |
| 221 | |
| 222 | FTransform MakeLookAtTransform(const FVector& LookAt, const FVector& LookUp, const EPCGExAxisAlign AlignAxis) |
| 223 | { |
no outgoing calls
no test coverage detected