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 mpeStart,
double mpeStop
) |
Visual Basic |
---|
<ExtensionAttribute> _
Public Shared Function CalcApsides ( _
orbit As IOrbit, _
mpeStart As Double, _
mpeStop As Double _
) As List(Of Apsis) |
Visual C++ |
---|
[ExtensionAttribute]
public:
static List<Apsis^>^ CalcApsides(
IOrbit^ orbit,
double mpeStart,
double mpeStop
) |
Parameters
- orbit
- Type: IOrbit
The orbit.
- mpeStart
- Type: System..::..Double
The start time of the target orbit (ascending node of
the current orbit).
- mpeStop
- Type: System..::..Double
The end time of the target orbit (abuts ascending node of
next orbit).
Return Value
A list containing the calculated apsides.
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