fromMatrix4
方法会将给定的4x4矩阵转换为3x3矩阵。
Matrix3.fromMatrix4(matrix)
matrix
:一个长度为16的数组表示的4x4矩阵。返回一个新的Matrix3对象,代表从给定的4x4矩阵中提取出的3x3矩阵。
const matrix4 = [
1, 0, 0, 2,
0, 1, 0, 3,
0, 0, 1, 4,
0, 0, 0, 1
];
const matrix3 = Matrix3.fromMatrix4(matrix4);
console.log(matrix3.toArray()); // [1, 0, 0, 0, 1, 0, 0, 0, 1]
该方法自Yuka 1.0.0版本引入。
无
该方法由Yuka.js库的作者编写。
Yuka.js库根据MIT许可获得许可。详见LICENSE文件。