Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在空间中有两点:
(x,y) (x2,y2)
使用这些点我想绘制一个垂直于它们的对象。如何找到这两个点的垂直方向矢量?
最快的可能是:
(- (x2-x), y2-y)
这基本上来自关于旋转矩阵的“通用旋转”部分。这个向量的负数也是垂直的,这取决于你要使用哪一个。
你不能只翻转 X 和 Y 坐标来找到一条垂直线吗?