NormalizedVectorEvaluatorEvaluate Method (JulianDate) |
Evaluates the function.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public override UnitCartesian Evaluate(
JulianDate date
)
Public Overrides Function Evaluate (
date As JulianDate
) As UnitCartesian
public:
virtual UnitCartesian Evaluate(
JulianDate date
) override
abstract Evaluate :
date : JulianDate -> UnitCartesian
override Evaluate :
date : JulianDate -> UnitCartesian
Parameters
- date
- Type: AGI.Foundation.TimeJulianDate
The value with which to evaluate the function.
Return Value
Type:
UnitCartesianThe value of the function.
Implements
IEvaluatorTEvaluate(JulianDate)Remarks
For information about the specific function evaluated by this evaluator, see the documentation for the
method that was used to create this evaluator.
Once created, an evaluator will ignore changes made to the object(s) from which it was created.
In other words, this method will always return the same result for a given JulianDate
regardless of changes made to other objects in the system. You should create a new evaluator
after making changes to definitional objects in order for those changes to be reflected in the results.
See Also