从矩阵中删除翻译

发布于 2024-08-20 19:26:15 字数 49 浏览 5 评论 0原文

是否可以仅从矩阵对象中删除平移元素,以便仅保留缩放和旋转元素?

谢谢

Is it possible to remove just the translation element from a Matrix object so that only Scale and Rotation elements remain?

Thanks

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

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

发布评论

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

评论(1

伴随着你 2024-08-27 19:26:15

只需将适当的矩阵元素归零即可。在 4x4 3D 变换矩阵中,它们作为前三个元素存储在最右列或底行中,具体取决于您使用预乘法还是后乘法。

如果您的 Matrix 类有一个获取翻译的方法,它可能也有一个添加翻译的方法。在这种情况下,只需添加已有内容的相反翻译即可。

Just zero out the appropriate matrix elements. In a 4x4 3D-transform matrix, these are stored as the three first elements in either in the rightmost column or bottom row, depending on whether you use pre- or post-multiplication.

If your Matrix class has a method to get the translation, it probably also has a method to add translations. In that case, just add the opposite translation of what you already have.

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