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.
我有一个 P1、P2 和 P3 向量,我需要倾斜。它必须是积极的。例如α = 30, θ=270
我可以计算 P1->P2;α 或 p1->P3;θ 吗?
相关维基百科文章:点积
通过计算两个向量的点积,然后除以它们的大小的乘积,你得到 cos(angle)。使用 acos,您可以提取角度。