带中心的旋转矩阵
在本示例或任何示例中如何计算中心向量。 WolframAlpha:http://www.wolframalpha。 com/input/?i=旋转+90+度+中心+%283%2C0%29
How is the center vector calculated in this example or in any example. WolframAlpha: http://www.wolframalpha.com/input/?i=rotate+90+degrees+center+%283%2C0%29
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
齐次坐标:
因此,要执行变换,您需要乘以 Translate(x, y) * Rotate(theta) * Translate(-x, -y) 并获得变换矩阵。
Homogenous coordinates:
So to perform your transformation, you multiply
Translate(x, y) * Rotate(theta) * Translate(-x, -y)
and get a transformation matrix.或者在一个函数语句中
Or in one function statment