Matrix4负责4x4矩阵变换。该方法将Matrix4转换为数组。
toArray(): Array<number>
返回一个包含16个数字的数组,代表Matrix4的元素。
const matrix = new Matrix4(); const array = matrix.toArray(); // [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]
该方法不会修改Matrix4,而是返回新数组的副本。
Matrix4