Calculates an orbit's apogee and perigee information.
Namespace: Zeptomoby.OrbitTools.TrackAssembly: Zeptomoby.OrbitTools.Track (in Zeptomoby.OrbitTools.Track.dll) Version: 1.5.0.0 (1.5.0.0)
Syntax
C# |
---|
public static List<Apsis> CalcApsides(
this IOrbit orbit,
double mpe
) |
Visual Basic |
---|
<ExtensionAttribute> _
Public Shared Function CalcApsides ( _
orbit As IOrbit, _
mpe As Double _
) As List(Of Apsis) |
Visual C++ |
---|
[ExtensionAttribute]
public:
static List<Apsis^>^ CalcApsides(
IOrbit^ orbit,
double mpe
) |
Parameters
- orbit
- Type: IOrbit
The orbit.
- mpe
- Type: System..::..Double
Identifies the target orbit; the ascending node occurs
at or before this minutes-past-epoch time. In format.
Return Value
A list containing both of the calculated apsides, or a partial
list if the orbit decays during processing.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IOrbit. When you use instance method syntax to call this method, omit the first parameter. For more information, see
or
.
See Also