소스 검색

Cylindrical: TS missing methods

Guilherme Avila 6 년 전
부모
커밋
210f3c9700
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/math/Cylindrical.d.ts

+ 1 - 0
src/math/Cylindrical.d.ts

@@ -12,5 +12,6 @@ export class Cylindrical {
 	copy( other: Cylindrical ): this;
 	set( radius: number, theta: number, y: number ): this;
 	setFromVector3( vec3: Vector3 ): this;
+	setFromCartesianCoords( x: number, y: number, z: number ): this;
 
 }