浏览代码

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;
 
 }