Matrix3 fromArray(Float32Array array, {int offset = 0}) { for (var i = 0; i < 9; i++) { elements[i] = array[i + offset]; } return this; }