web3d / node_modules /three /src /math /Cylindrical.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
322 Bytes
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;
}