machineuser
version control dist & node_modules...
263e0f2
raw
history blame contribute delete
354 Bytes
import { Vector3 } from './Vector3';
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: Spherical): this;
makeSafe(): void;
setFromVector3(vec3: Vector3): Spherical;
}