Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Math > API/Runtime/Core/Math/VectorMatrixInverse
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Math/UnrealMathNeon.h |
| Include | #include "Math/UnrealMathNeon.h" |
bool VectorMatrixInverse
(
FMatrix44d * DstMatrix,
const FMatrix44d * SrcMatrix
)
Remarks
Calculate the inverse of an FMatrix44. Src == Dst is allowed bool returns false if matrix is not invertable and stores identity
Parameters
| Name | Description |
|---|---|
| DstMatrix | FMatrix44 pointer to where the result should be stored |
| SrcMatrix | FMatrix44 pointer to the Matrix to be inversed |