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,
	DateTime utc
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function RevAtTime ( _
	orbit As IOrbit, _
	utc As DateTime _
) As Integer
Visual C++
[ExtensionAttribute]
public:
static int RevAtTime(
	IOrbit^ orbit, 
	DateTime utc
)

Parameters

orbit
Type: IOrbit
The orbit.
utc
Type: System..::..DateTime
The target time, in UTC.

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