File size: 322 Bytes
6cd9596
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Vector3 } from './Vector3';

export class Cylindrical {
  constructor(radius?: number, theta?: number, y?: number);

  radius: number;
  theta: number;
  y: number;

  clone(): this;
  copy(other: Cylindrical): this;
  set(radius: number, theta: number, y: number): this;
  setFromVector3(vec3: Vector3): this;
}