Transform.this

Construct a transform from 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] matrix)

Parameters

a00 float

Element (0, 0) of the matrix

a01 float

Element (0, 1) of the matrix

a02 float

Element (0, 2) of the matrix

a10 float

Element (1, 0) of the matrix

a11 float

Element (1, 1) of the matrix

a12 float

Element (1, 2) of the matrix

a20 float

Element (2, 0) of the matrix

a21 float

Element (2, 1) of the matrix

a22 float

Element (2, 2) of the matrix

Meta