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