From 877d3861dedbeee12e8d9d4a0dbbdc286dccab84 Mon Sep 17 00:00:00 2001 From: Calvin Jeong Date: Wed, 1 Feb 2017 14:44:58 +1300 Subject: [PATCH] Updated three/index.d.ts Added extra properties for `Spherical` class. --- three/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/three/index.d.ts b/three/index.d.ts index 36263993c7..b4b4995ee8 100644 --- a/three/index.d.ts +++ b/three/index.d.ts @@ -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;