Struct FMatrix4

FMatrix4 structure

Matrix 4x4 with all component in float type

public struct FMatrix4

Constructors

NameDescription
FMatrix4(Matrix4)Initialize the instance of FMatrix4 from a Matrix4 instance.
FMatrix4(FVector4, FVector4, FVector4, FVector4)Constructs matrix from 4 rows.
FMatrix4(float, float, float, float, float, float, float, float, float, float, float, float, float, float, float, float)Initialize the instance of FMatrix4

Properties

NameDescription
static Identity { get; }The identity matrix

Methods

NameDescription
Concatenate(FMatrix4)Concatenates the two matrices
Concatenate(Matrix4)Concatenates the two matrices
Inverse()Calculate the inverse matrix of current instance.
Transpose()Transposes this instance.
operator *Concatenate the two matrices (2 operators)

Fields

NameDescription
m00The m00.
m01The m01.
m02The m02.
m03The m03.
m10The m10.
m11The m11.
m12The m12.
m13The m13.
m20The m20.
m21The m21.
m22The m22.
m23The m23.
m30The m30.
m31The m31.
m32The m32.
m33The m33.

See Also