Gets the indicated component of the motion.
Index 0 retrieves the coordinate value. Index 1 retrieves the first derivative, if it
exists. Index 2 retrieves the second derivative, if it exists. The number of available
derivatives is indicated by the
Order property.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic T this[
int index
] { get; }
Public ReadOnly Default Property Item (
index As Integer
) As T
Get
public:
virtual property T default[int index] {
T get (int index) sealed;
}
abstract Item : 'T with get
override Item : 'T with get
Parameters
- index
- Type: System.Int32
The index of the motion component to retrieve.
Return Value
Type:
TThe requested motion component.
Implements
IMotion<T, TDerivative>.Item[Int32]
Exceptions
See Also