Matrix4.makeRotationY()是three.js中Matrix4对象的一个方法,用于在Y轴上进行旋转操作。
Matrix4.makeRotationY()
matrix.makeRotationY(theta)
theta
const matrix = new THREE.Matrix4(); matrix.makeRotationY(Math.PI / 2); // 将对象绕Y轴旋转90度
Matrix4.makeRotationY()将当前矩阵绕Y轴旋转一定角度,生成新的矩阵。
Matrix4.makeRotationY() - three.js docs