Skip to content

Cylindrical

new Cylindrical(radius?, theta?, y?)

THREE equivalent: THREE.Cylindrical

Cylindrical coordinate representation (radius, angle, height).

Name Type Description
radius number Radial distance.
theta number Angle around the Y axis in radians.
y number Height.
Method Description
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.