Matrix4 constructor

Matrix4()

Implementation

Matrix4() {
  elements = Float32Array.from([
    1.0,
    0.0,
    0.0,
    0.0,
    0.0,
    1.0,
    0.0,
    0.0,
    0.0,
    0.0,
    1.0,
    0.0,
    0.0,
    0.0,
    0.0,
    1.0
  ]);
}