Procházet zdrojové kódy

Cylindrical: TS missing methods

Guilherme Avila před 6 roky
rodič
revize
210f3c9700
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  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;
 
 }