Navigation
API > API/Runtime > API/Runtime/Chaos
Description
Solves X * A = B (or A.Multiply(X) = B) using Gaussian elimination, writing the result into X. Returns true if there is a solution, false otherwise.
| Name | Chaos::Utilities::Solve |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/Utilities.h |
| Include Path | #include "Chaos/Utilities.h" |
namespace Chaos
{
namespace Utilities
{
bool Chaos::Utilities::Solve
(
FVec3 & X,
const FMatrix33 & A,
const FVec3 & B
)
}
}