Matrix3 constructor

Matrix3()

Implementation

Matrix3() {
  elements = Float32Array.from([1, 0, 0, 0, 1, 0, 0, 0, 1]);
}