三轴旋转公式

来源:3-9 图形旋转 - 旋转矩阵

核桃丷

2023-03-26

export const getRotateZMatrix = (β = 0) => {
    const sin = Math.sin(β)
    const cos = Math.cos(β)
    return new Float32Array([
        cos, sin, 0.0, 0.0,
        -sin, cos, 0.0, 0.0,
        0.0, 0.0, 1.0, 0.0,
        0.0, 0.0, 0.0, 1.0
    ])
}

export const getRotateYMatrix = (θ = 0) => {
    const sin = Math.sin(θ)
    const cos = Math.cos(θ)
    return new Float32Array([
        cos, 0.0, -sin, 0.0,
        0.0, 1.0, 0.0, 0.0,
        sin, 0.0, cos, 0.0,
        0.0, 0.0, 0.0, 1.0
    ])
}

export const getRotateXMatrix = (α = 0) => {
    const sin = Math.sin(α)
    const cos = Math.cos(α)
    return new Float32Array([
        1.0, 0.0, 0.0, 0.0,
        0.0, cos, sin, 0.0,
        0.0, -sin, cos, 0.0,
        0.0, 0.0, 0.0, 1.0
    ])
}
写回答

1回答

yancy

2024-12-30

👍🏻👍🏻👍🏻👍🏻👍🏻

0
0

WebGL+Three.js 入门与实战,系统学习 Web3D 技术

前端的技术蓝海,涨薪好选择

1119 学习 · 328 问题

查看课程