PointInterpolator Constructor (ReferenceFrame, InterpolationAlgorithm, Int32, DateMotionCollectionCartesian, IListJulianDate) |
Initializes a new instance of the
PointInterpolator class from the provided parameters.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public PointInterpolator(
ReferenceFrame referenceFrame,
InterpolationAlgorithm interpolationAlgorithm,
int degree,
DateMotionCollection<Cartesian> data,
IList<JulianDate> segmentBoundaryTimes
)
Public Sub New (
referenceFrame As ReferenceFrame,
interpolationAlgorithm As InterpolationAlgorithm,
degree As Integer,
data As DateMotionCollection(Of Cartesian),
segmentBoundaryTimes As IList(Of JulianDate)
)
public:
PointInterpolator(
ReferenceFrame^ referenceFrame,
InterpolationAlgorithm^ interpolationAlgorithm,
int degree,
DateMotionCollection<Cartesian>^ data,
IList<JulianDate>^ segmentBoundaryTimes
)
new :
referenceFrame : ReferenceFrame *
interpolationAlgorithm : InterpolationAlgorithm *
degree : int *
data : DateMotionCollection<Cartesian> *
segmentBoundaryTimes : IList<JulianDate> -> PointInterpolator
Parameters
- referenceFrame
- Type: AGI.Foundation.GeometryReferenceFrame
The reference frame in which the point is defined. - interpolationAlgorithm
- Type: AGI.Foundation.NumericalMethods.AdvancedInterpolationAlgorithm
The interpolation algorithm to use to interpolate the point. - degree
- Type: SystemInt32
The degree of interpolation to perform. - data
- Type: AGI.FoundationDateMotionCollectionCartesian
The data over which to interpolate. - segmentBoundaryTimes
- Type: System.Collections.GenericIListJulianDate
The boundary times between segments that the interpolator should not interpolate over.
See Also