Cylindrical
A cylindrical coordinate system.
For details see: https://en.wikipedia.org/wiki/Cylindrical_coordinate_system
Constructor Summary
Public Constructor | ||
public |
constructor(radius: Number, theta: Number, y: Number) Constructs a new cylindrical system. |
Member Summary
Public Members | ||
public |
The distance from the origin to a point in the XZ-plane. |
|
public |
The counterclockwise angle in the XZ-plane measured in radians from the positive Z-axis. |
|
public |
The height above the XZ-plane. |
Method Summary
Public Methods | ||
public |
clone(): Cylindrical Clones this cylindrical system. |
|
public |
copy(c: Cylindrical): Cylindrical Copies the values of the given cylindrical system. |
|
public |
set(radius: Number, theta: Number, y: Number): Cylindrical Sets the values of this cylindrical system. |
|
public |
setFromCartesianCoords(x: Number, y: Number, z: Number): Cylindrical Sets the values of this cylindrical system based on cartesian coordinates. |
|
public |
Sets the values of this cylindrical system. |
Public Constructors
Public Members
Public Methods
public copy(c: Cylindrical): Cylindrical source
Copies the values of the given cylindrical system.
Params:
Name | Type | Attribute | Description |
c | Cylindrical | A cylindrical system. |
public set(radius: Number, theta: Number, y: Number): Cylindrical source
Sets the values of this cylindrical system.
public setFromCartesianCoords(x: Number, y: Number, z: Number): Cylindrical source
Sets the values of this cylindrical system based on cartesian coordinates.
public setFromVector3(v: Vector3): Cylindrical source
Sets the values of this cylindrical system.
Params:
Name | Type | Attribute | Description |
v | Vector3 | A vector. |