Determines the orbit revolution number at a given time.

Namespace: Zeptomoby.OrbitTools.Track
Assembly: Zeptomoby.OrbitTools.Track (in Zeptomoby.OrbitTools.Track.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

C#
public static int RevAtTime(
	this IOrbit orbit,
	double mpe
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function RevAtTime ( _
	orbit As IOrbit, _
	mpe As Double _
) As Integer
Visual C++
[ExtensionAttribute]
public:
static int RevAtTime(
	IOrbit^ orbit, 
	double mpe
)

Parameters

orbit
Type: IOrbit
The orbit.
mpe
Type: System..::..Double
The target time, in minutes-past-epoch.

Return Value

The orbit revolution number.

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