UnitCartesian Constructor (Double, Double, Double) |
Initializes a set of
UnitCartesian coordinates from the provided values.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.2.423.0 (25.2.423.0)
Syntaxpublic UnitCartesian(
double x,
double y,
double z
)
Public Sub New (
x As Double,
y As Double,
z As Double
)
public:
UnitCartesian(
double x,
double y,
double z
)
new :
x : float *
y : float *
z : float -> UnitCartesianParameters
- x
- Type: SystemDouble
The linear coordinate along the positive x-axis. - y
- Type: SystemDouble
The linear coordinate along the positive y-axis. - z
- Type: SystemDouble
The linear coordinate along the positive z-axis.
Exceptions| Exception | Condition |
|---|
| DivideByZeroException |
The magnitude of the provided coordinates must not be zero.
|
| NotFiniteNumberException |
The magnitude of the provided coordinates must not be infinite.
|
See Also