Cylindrical.d.ts 390 B

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