We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0ad36 commit 9fe9223Copy full SHA for 9fe9223
src/math/Spherical.js
@@ -1,12 +1,11 @@
1
+import * as MathUtils from './MathUtils.js';
2
+
3
/**
4
* Ref: https://en.wikipedia.org/wiki/Spherical_coordinate_system
5
*
- * The polar angle (phi) is measured from the positive y-axis. The positive y-axis is up.
- * The azimuthal angle (theta) is measured from the positive z-axis.
6
+ * phi (the polar angle) is measured from the positive y-axis. The positive y-axis is up.
7
+ * theta (the azimuthal angle) is measured from the positive z-axis.
8
*/
-
-import * as MathUtils from './MathUtils.js';
9
10
class Spherical {
11
12
constructor( radius = 1, phi = 0, theta = 0 ) {
0 commit comments