python 3d旋转 父子旋转

python 3d旋转 父子旋转

如果父子旋转的原点相同,那么旋转矩阵是相同的。


import numpy as np
np.set_printoptions(precision=2, suppress=True)
def calculate_rotated_child_position(parent_position, child_position, rotation_angles):
    # 将旋转角度(ZYX顺序)转换为旋转矩阵
    rotation_matrix = np.linalg.inv(np.array([
        [np.cos(rotation_angles[1]) * np.cos(rotation_angles[0]), np.sin(rotation_angles[2]) * np.sin(rotation_angles[1]) * np.cos(rotation_angles[0]) - np.cos(rotation_angles[2]) * np.sin(rotation_angles[0]), np.cos(rotation_angles[2]) * np.sin(rotation_angles[1]) * np.cos(rotation_angles[0]) + np.sin(rotation_angles[2]) * np.sin(rotation_angles[0])],
        [np.cos(rotation_angles[1]) * np.sin(rotation_angles[0]), np.sin(rotation_angles[2]) * np.sin(rotation_angles[1]) * np.sin(rotation_angles[0]) + np.cos(rotation_angles[2]) * np.cos(rotation_angles[0]), np.cos(rotation_angles[2]) * np.sin(rotation_angles[1]) * np.sin(rotation_angles[0]) - np.sin(rotation_angles[2]) * np.cos(rotation_angles[0])],
        [-np.sin(rotation_angles[1]), np.sin(rotation_angles[2]) * np.cos(rotation_angles[1]), np.cos(rotation_angles[2]) * np.cos(rotation_angles[1])]
    ]))

    rotated_parent_position = np.dot(rotation_matrix, np.array(parent_position))
    rotated_child_position = np.dot(rotation_matrix, np.array(child_position))

    return rotated_parent_position, rotated_child_position

# 示例:父节点位置、子节点位置和旋转角度(ZYX顺序,弧度)
parent_position = [1, 0, 0]
child_position = [2, 0,0]
rotation_angles = [np.pi/4,np.pi/4,np.pi/4]  # 45度旋转


# 计算旋转后的子节点位置
parent_position, child_position = calculate_rotated_child_position(parent_position, child_position, rotation_angles)
print(f"旋转后的子节点位置: {parent_position} {child_position}")

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AI算法网奇

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值