Package | Description |
---|---|
agi.foundation.geometry |
Contains types for expressing the motion of fundamental geometric objects such as points, axes, and reference frames;
the manner in which they are related; and transformations between representations.
|
agi.foundation.numericalmethods |
Contains general numerical algorithms.
|
Constructor and Description |
---|
AxesInterpolator(Axes referenceAxes,
InterpolationAlgorithmType algorithmType,
int degree,
DateMotionCollection2<UnitQuaternion,Cartesian> data)
Initializes a new instance of the
AxesInterpolator class from the provided parameters. |
AxesInterpolator(Axes referenceAxes,
InterpolationAlgorithmType algorithmType,
int degree,
DateMotionCollection2<UnitQuaternion,Cartesian> data,
List<JulianDate> segmentBoundaryTimes)
Initializes a new instance of the
AxesInterpolator class from the provided parameters. |
PointInterpolator(ReferenceFrame referenceFrame,
InterpolationAlgorithmType algorithmType,
int degree,
DateMotionCollection1<Cartesian> data)
Initializes a new instance of the
PointInterpolator class from the provided parameters. |
PointInterpolator(ReferenceFrame referenceFrame,
InterpolationAlgorithmType algorithmType,
int degree,
DateMotionCollection1<Cartesian> data,
List<JulianDate> segmentBoundaryTimes)
Initializes a new instance of the
PointInterpolator class from the provided parameters. |
ScalarInterpolator(InterpolationAlgorithmType algorithmType,
int degree,
DateMotionCollection1<Double> data)
Initializes a new instance of the
ScalarInterpolator class from the provided parameters. |
ScalarInterpolator(InterpolationAlgorithmType algorithmType,
int degree,
DateMotionCollection1<Double> data,
List<JulianDate> segmentBoundaryTimes)
Initializes a new instance of the
ScalarInterpolator class from the provided parameters. |
VectorInterpolator(Axes definedInAxes,
InterpolationAlgorithmType algorithmType,
int degree,
DateMotionCollection1<Cartesian> data)
Initializes a new instance of the
VectorInterpolator class from the provided parameters. |
VectorInterpolator(Axes definedInAxes,
InterpolationAlgorithmType algorithmType,
int degree,
DateMotionCollection1<Cartesian> data,
List<JulianDate> segmentBoundaryTimes)
Initializes a new instance of the
VectorInterpolator class from the provided parameters. |
Modifier and Type | Method and Description |
---|---|
static InterpolationAlgorithmType |
InterpolationAlgorithmType.getDefault()
Get the enum constant that is considered to be the default.
|
static InterpolationAlgorithmType |
InterpolationAlgorithmType.getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
static InterpolationAlgorithmType |
InterpolationAlgorithmType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpolationAlgorithmType[] |
InterpolationAlgorithmType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|