소스 검색

Merge pull request #17716 from EliasHasle/patch-3

Corrected typo in Spherical: axiz -> axis
Michael Herzog 6 년 전
부모
커밋
950a3df93c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/math/Spherical.js

+ 1 - 1
src/math/Spherical.js

@@ -7,7 +7,7 @@ import { _Math } from './Math.js';
  * Ref: https://en.wikipedia.org/wiki/Spherical_coordinate_system
  *
  * 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-axiz.
+ * The azimuthal angle (theta) is measured from the positive z-axis.
  */
 
 function Spherical( radius, phi, theta ) {