CachingMotionEvaluatorTEvaluate Method (JulianDate, Int32) |
Evaluates the function, first checking for a cached result corresponding to date
and order.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override Motion<T> Evaluate(
JulianDate date,
int order
)
Public Overrides Function Evaluate (
date As JulianDate,
order As Integer
) As Motion(Of T)
public:
virtual Motion<T> Evaluate(
JulianDate date,
int order
) override
abstract Evaluate :
date : JulianDate *
order : int -> Motion<'T>
override Evaluate :
date : JulianDate *
order : int -> Motion<'T>
Parameters
- date
- Type: AGI.Foundation.TimeJulianDate
The value with which to evaluate the function. - order
- Type: SystemInt32
The maximum order to evaluate. Passing 0 evaluates the value only.
Passing 1 evaluates the value and its derivative, etc.
Return Value
Type:
MotionT
The value of the function and additional derivatives, if requested.
See Also