AccessConstraintSamplingGetNextStepFromRelativeMotion Method |
Computes an appropriate next sample step based on the relative motion between the two
platforms involved in the Access computation and a maximum relative motion per step.
Namespace:
AGI.Foundation.Access
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static JulianDate GetNextStepFromRelativeMotion(
JulianDate epoch,
Motion<Cartesian> relativeMotion,
double maximumAngularMotion
)
Public Shared Function GetNextStepFromRelativeMotion (
epoch As JulianDate,
relativeMotion As Motion(Of Cartesian),
maximumAngularMotion As Double
) As JulianDate
public:
static JulianDate GetNextStepFromRelativeMotion(
JulianDate epoch,
Motion<Cartesian> relativeMotion,
double maximumAngularMotion
)
static member GetNextStepFromRelativeMotion :
epoch : JulianDate *
relativeMotion : Motion<Cartesian> *
maximumAngularMotion : float -> JulianDate
Parameters
- epoch
- Type: AGI.Foundation.TimeJulianDate
The epoch from which the next sample is to be determined. - relativeMotion
- Type: AGI.FoundationMotionCartesian
The relative motion between the platforms. - maximumAngularMotion
- Type: SystemDouble
The maximum angular motion allowed, in radians.
Return Value
Type:
JulianDateThe Julian date at which the next sample should be evaluated.
See Also