三个中的phi.OrbitControl是哪个轴的角度?

时间:2013-11-25 20:45:57

标签: javascript three.js

phi中的{p> THREE.OrbitControl是与下面的代码中哪个轴的角度?

phi += phiDelta;

// restrict phi to be between desired limits
phi = Math.max( this.minPolarAngle, Math.min( this.maxPolarAngle, phi ) );

我认为theta与代码中的y轴成一个角度,因为它有责任执行“向上”旋转。

但我不知道phi,如果它是与x轴或z轴的角度。

1 个答案:

答案 0 :(得分:1)

phi是极角 - 与y轴的角度。 y轴是标称的“向上”方向。

phi很小时,相机从顶部向下看。

theta是围绕y轴的角度。

所有角度都是弧度。