Cylindrical.d.ts 322 B

1234567891011121314
  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. }
粤ICP备19079148号