Transform.this

Construct a 3x3 matrix.

  1. this(float a00, float a01, float a02, float a10, float a11, float a12, float a20, float a21, float a22)
    struct Transform
    this
    (
    float a00
    ,
    float a01
    ,
    float a02
    ,
    float a10
    ,
    float a11
    ,
    float a12
    ,
    float a20
    ,
    float a21
    ,
    float a22
    )
  2. this(float[9] newMatrix)

Parameters

a00
Type: float

Element (0, 0) of the matrix

a01
Type: float

Element (0, 1) of the matrix

a02
Type: float

Element (0, 2) of the matrix

a10
Type: float

Element (1, 0) of the matrix

a11
Type: float

Element (1, 1) of the matrix

a12
Type: float

Element (1, 2) of the matrix

a20
Type: float

Element (2, 0) of the matrix

a21
Type: float

Element (2, 1) of the matrix

a22
Type: float

Element (2, 2) of the matrix

Meta