web3d / node_modules /three /src /math /Spherical.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
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;
}