在 OGRE 中获取对象的方向

发布于 2021-11-12 04:43:12 字数 764 浏览 783 评论 1

我有一个小人包含身体和脑袋,脑袋和身体通过骨头连接,并且我已经知道了骨头的名称,现在我想获取脑袋的方向,可能吗?

我写了下面这样的代码,但是无法用:

Entity *smith = m_sceneManager->getEntity("Smith");
Bone *head = smith->getSkeleton()->getBone("Bip01 Head");
Vector3 direction = head->_getDerivedOrientation() * Vector3::UNIT_X;
std::cout << StringConverter::toString(direction) << std::endl;

I thought I should multiply by other than the unit x vector, so I tried all the combinations. In this case (i.e. Smith entity), I got the correct answer using -Vector3::UNIT_X, so I thought this is the correct solution. I tried with other entities, but I failed to get the correct answer.

Any idea?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

躲猫猫 2021-11-16 04:26:16

Multiplying a quaternion by negative Z should correctly return the direction as a vector:

Vector3 direction = head->_getDerivedOrientation() * Vector3::NEGATIVE_UNIT_Z;

详情请看 this post on the Ogre forums.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文