Navigation
Unreal Engine C++ API Reference > Runtime > Chaos > Chaos > Chaos::Utilities::Multiply
References
Module | Chaos |
Header | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/Utilities.h |
Include | #include "Chaos/Utilities.h" |
namespace Chaos
{
namespace Utilities
{
FMatrix33 Chaos&58;&58;Utilities&58;&58;Multiply
&40;
const FMatrix33 & L,
const FMatrix33 & R
&41;
}
}
Remarks
Multiple two matrices: C = L.R
This is the mathematically expected operator. FMatrix operator* calculates C = R.Transpose(L), so this is not equivalent to that.