Spherical.d.ts 408 B

123456789101112131415161718
  1. import { Vector3 } from './Vector3';
  2. export class Spherical {
  3. constructor( radius?: number, phi?: number, theta?: number );
  4. radius: number;
  5. phi: number;
  6. theta: number;
  7. set( radius: number, phi: number, theta: number ): this;
  8. clone(): this;
  9. copy( other: Spherical ): this;
  10. makeSafe(): this;
  11. setFromVector3( v: Vector3 ): this;
  12. setFromCartesianCoords( x: number, y: number, z: number ): this;
  13. }