ModifiedKeplerianElements Constructor (DelaunayElements, Double, Double) |
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.2.423.0 (25.2.423.0)
Syntaxpublic ModifiedKeplerianElements(
DelaunayElements elements,
double eccentricityTolerance,
double inclinationTolerance
)
Public Sub New (
elements As DelaunayElements,
eccentricityTolerance As Double,
inclinationTolerance As Double
)
public:
ModifiedKeplerianElements(
DelaunayElements^ elements,
double eccentricityTolerance,
double inclinationTolerance
)
new :
elements : DelaunayElements *
eccentricityTolerance : float *
inclinationTolerance : float -> ModifiedKeplerianElementsParameters
- elements
- Type: AGI.Foundation.CoordinatesDelaunayElements
The set of Delaunay elements. - eccentricityTolerance
- Type: SystemDouble
The tolerance which defines the value of 'zero' to use when checking whether the
eccentricity is zero below which the orbit is circular. - inclinationTolerance
- Type: SystemDouble
The tolerance which defines the value of 'zero' to use when checking whether the
inclination is zero below which the orbit is equatorial.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | Thrown when elements is null. |
| ArgumentOutOfRangeException |
Thrown when either eccentricityTolerance or inclinationTolerance is negative.
|
See Also