VectorDifferentiatorDerivativeToCompute Property |
Gets or sets the derivative to compute by finite-differencing. For example, a value of
1 for this property indicates that the first derivative (or vector rate) should be computed.
A value of 0 (the default) will cause the first derivative that is not supplied directly by
DifferentiatedVector to be computed.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public int DerivativeToCompute { get; set; }
Public Property DerivativeToCompute As Integer
Get
Set
public:
property int DerivativeToCompute {
int get ();
void set (int value);
}
member DerivativeToCompute : int with get, set
Property Value
Type:
Int32Remarks
A given derivative can only be computed if the next lower order derivative exists. For
example, acceleration can only be computed if velocity is already supplied by
DifferentiatedVector. If the requested derivative cannot be computed,
the highest possible derivative will be computed instead.
See Also