绕给定点旋转
我有一个点,假设 p(0.0, 0.0, 20.0) 我想在 XZ 平面上围绕点 a(0.0, 0.0, 10.0) 旋转。最简单的方法是什么?我使用 Qt 和 QVector3D 和 QMatrix4x4 来执行转换。我能想到的一切都是这样的:
QVector3D p(0.0, 0.0, 20.0);
QVector3D a(0.0, 0.0, 10.0);
QMatrix4x4 m;
m.translate(-a.x(), -a.y(), -a.z());
p = m*p;
m.setToIdentity();
m.rotate(180, 0.0, 1.0, 0.0);
p = m*p;
m.setToIdentity();
m.translate(a.x(), a.y(), a.z());
p = m*p;
但它对我来说似乎明显复杂,我想知道是否有任何更简单或更优雅的解决方案?
I have a point, let's say p(0.0, 0.0, 20.0) which I want to rotate about point a(0.0, 0.0, 10.0) in XZ plane. What is the simplest way to do it? I am using Qt with QVector3D and QMatrix4x4 to perform transformations. Everything I can think of is something like that:
QVector3D p(0.0, 0.0, 20.0);
QVector3D a(0.0, 0.0, 10.0);
QMatrix4x4 m;
m.translate(-a.x(), -a.y(), -a.z());
p = m*p;
m.setToIdentity();
m.rotate(180, 0.0, 1.0, 0.0);
p = m*p;
m.setToIdentity();
m.translate(a.x(), a.y(), a.z());
p = m*p;
But it seems conspiciously complex to me and I wonder if there are any simpler or more elegant solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用简单的向量减法/加法而不是与平移矩阵相乘来简化代码:
You can simplify the code by using simple vector subtraction/addition instead of the multiplication with a translation matrix: