1 Star 0 Fork 1

HRJ/aiv-cal

forked from 刘宏/aiv-cal 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.py 356 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘宏 提交于 2024-07-26 12:26 . test
# coding: utf-8
from typing import Dict, List, Any
from utils import convert_euler_to_rotate_matrix
def test_euler_to_rm():
e = {"w": 0, "p": 0, "r": 0}
rm = convert_euler_to_rotate_matrix(e, False)
print("rm", rm)
e = {"w": 180, "p": 0, "r": 0}
rm = convert_euler_to_rotate_matrix(e, False)
print("rm", rm)
test_euler_to_rm()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/HRJGit/aiv-cal.git
git@gitee.com:HRJGit/aiv-cal.git
HRJGit
aiv-cal
aiv-cal
main

搜索帮助