Matrix3类的transpose方法用于对该矩阵进行转置操作。
.transpose()
该方法没有参数。
该方法返回Matrix3类型的实例对象,表示执行转置后得到的新矩阵。
import Yuka from 'yuka';
const matrix = new Yuka.Matrix3();
matrix.set(
1, 2, 3,
4, 5, 6,
7, 8, 9
);
console.log(matrix.elements); // [1, 2, 3, 4, 5, 6, 7, 8, 9]
const transposedMatrix = matrix.transpose();
console.log(transposedMatrix.elements); // [1, 4, 7, 2, 5, 8, 3, 6, 9]
该方法没有异常。
该方法会对原矩阵进行转置操作,因此会修改原矩阵。