Cylindrical Constructor (Double, Double, Double) |
Initializes a set of
Cylindrical coordinates from the provided values.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public Cylindrical(
double clock,
double radial,
double z
)
Public Sub New (
clock As Double,
radial As Double,
z As Double
)
public:
Cylindrical(
double clock,
double radial,
double z
)
new :
clock : float *
radial : float *
z : float -> Cylindrical
Parameters
- clock
- Type: SystemDouble
The angular coordinate lying in the xy-plane measured from the positive x-axis and toward the positive y-axis. - radial
- Type: SystemDouble
The linear coordinate perpendicular to the z-axis. - z
- Type: SystemDouble
The linear coordinate along the positive z-axis.
See Also