CGAL:给定两条线/向量/方向的旋转变换矩阵
如何通过 CGAL 中两条线/向量/方向之间的角度生成旋转点/其他点的变换矩阵?
2D 正是我所需要的。 3D 是我喜欢的。
How do I generate a transformation matrix for rotating points/others by the angle between two lines/vectors/directions in CGAL?
2D is what I need. 3D is what I love.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据手册,您可以使用这些工具和:
有了它们,您应该能够计算与两个方向相对应的矩阵,并使用以下恒等式:
得到您想要的。
According to the manual you have these tools to work with:
With them you should be able to compute the matrices corresponding to the two directions and use an identity along the lines of:
to get what you want.