Cylindrical

new Cylindrical(radius?, theta?, y?)
THREE: THREE.Cylindrical

Cylindrical coordinate representation (radius, angle, height).

Properties

NameTypeDescription
radius

number

Radial distance.

theta

number

Angle around the Y axis in radians.

y

number

Height.

Methods

MethodDescription
set(radius: number, theta: number, y: number): this

Sets all three components.

setFromVector3(v: Vector3): this

Converts a Cartesian Vector3 to cylindrical coordinates.

clone(): Cylindrical

Returns a new Cylindrical with the same values.