mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Updated three/index.d.ts
Added extra properties for `Spherical` class.
This commit is contained in:
parent
8cb9653398
commit
877d3861de
4
three/index.d.ts
vendored
4
three/index.d.ts
vendored
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user