如何在three.js中找到两个向量之间的单一角度?

时间:2019-06-06 07:27:53

标签: three.js

我有2个向量A,B。使用A.angleTo(B),我知道它们之间的角度变形。

如何找到该角度的征兆? 也许我们需要为此使用一些参考矢量?

1 个答案:

答案 0 :(得分:0)

我建议您使用参考平面,我个人不需要角度的符号 从.angleTo()方法返回,所以我建议您阅读以下两篇文章:

Signed angle between two 3D vectors with same origin within the same plane

How to calculate the angle between 2 vectors in a plane