FMatrix4 constructor

__init__(self)

Constructs a new instance of FMatrix4


def __init__(self):
    ...

__init__(self, mat)

Initialize the instance of FMatrix4 from a Matrix4 instance.


def __init__(self, mat):
    ...
ParameterTypeDescription
matMatrix4The Matrix4 instance.

__init__(self, r0, r1, r2, r3)

Constructs matrix from 4 rows.


def __init__(self, r0, r1, r2, r3):
    ...
ParameterTypeDescription
r0FVector4R0.
r1FVector4R1.
r2FVector4R2.
r3FVector4R3.

__init__(self, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33)

Initialize the instance of FMatrix4


def __init__(self, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33):
    ...
ParameterTypeDescription
m00floatThe m[0, 0]
m01floatThe m[0, 1]
m02floatThe m[0, 2]
m03floatThe m[0, 3]
m10floatThe m[1, 0]
m11floatThe m[1, 1]
m12floatThe m[1, 2]
m13floatThe m[1, 3]
m20floatThe m[2, 0]
m21floatThe m[2, 1]
m22floatThe m[2, 2]
m23floatThe m[2, 3]
m30floatThe m[3, 0]
m31floatThe m[3, 1]
m32floatThe m[3, 2]
m33floatThe m[3, 3]

See Also