Updated three/index.d.ts

Added extra properties for `Spherical` class.
This commit is contained in:
Calvin Jeong 2017-02-01 14:44:58 +13:00 committed by GitHub
parent 8cb9653398
commit 877d3861de

4
three/index.d.ts vendored
View File

@ -3586,6 +3586,10 @@ declare namespace THREE {
export class Spherical {
constructor(radius?: number, phi?: number, theta?: number);
radius: number;
phi: number;
theta: number;
set(radius: number, phi: number, theta: number): Spherical;
clone(): this;
copy(other: this): this;