Navigation
API > API/Runtime > API/Runtime/Chaos > API/Runtime/Chaos/TDenseMatrix
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static TDenseMatrix< MaxElements > Make
(
const FVec3& InM |
Create a copy of the 3x1 columns vector. | Chaos/DenseMatrix.h | |
static TDenseMatrix< MaxElements > Make
(
const FMatrix33& InM |
Create a copy of the 3x3 matrix. | Chaos/DenseMatrix.h | |
static TDenseMatrix< MaxElements > Make
(
const int32 InNumRows, |
Factory methods Create a matrix with the specified dimensions, but all elements are uninitialized. | Chaos/DenseMatrix.h | |
static TDenseMatrix< MaxElements > Make
(
const int32 InNumRows, |
Create a matrix with the specified dimensions, and initialize all elements with "V". | Chaos/DenseMatrix.h | |
static TDenseMatrix< MaxElements > Make
(
const int32 InNumRows, |
Create a matrix with the specified elements supplied as an array in row-major order (i.e., the first N elements are for Row 0, the next N for Row 1, etc., where N is the number of columns). | Chaos/DenseMatrix.h |
Make(const FVec3 &)
Description
Create a copy of the 3x1 columns vector.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/DenseMatrix.h |
| Include Path | #include "Chaos/DenseMatrix.h" |
static TDenseMatrix < MaxElements > Make
(
const FVec3 & InM
)
Make(const FMatrix33 &)
Description
Create a copy of the 3x3 matrix.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/DenseMatrix.h |
| Include Path | #include "Chaos/DenseMatrix.h" |
static TDenseMatrix < MaxElements > Make
(
const FMatrix33 & InM
)
Make(const int32, const int32)
Description
Factory methods Create a matrix with the specified dimensions, but all elements are uninitialized.
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/DenseMatrix.h |
| Include Path | #include "Chaos/DenseMatrix.h" |
static TDenseMatrix < MaxElements > Make
(
const int32 InNumRows,
const int32 InNumCols
)
Make(const int32, const int32, const FReal)
Description
Create a matrix with the specified dimensions, and initialize all elements with "V".
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/DenseMatrix.h |
| Include Path | #include "Chaos/DenseMatrix.h" |
static TDenseMatrix < MaxElements > Make
(
const int32 InNumRows,
const int32 InNumCols,
const FReal V
)
Make(const int32, const int32, const FReal *, const int32)
Description
Create a matrix with the specified elements supplied as an array in row-major order (i.e., the first N elements are for Row 0, the next N for Row 1, etc., where N is the number of columns).
| Name | Make |
| Type | function |
| Header File | /Engine/Source/Runtime/Experimental/Chaos/Public/Chaos/DenseMatrix.h |
| Include Path | #include "Chaos/DenseMatrix.h" |
static TDenseMatrix < MaxElements > Make
(
const int32 InNumRows,
const int32 InNumCols,
const FReal * V,
const int32 VLen
)