VectorInterpolator Constructor (Axes, InterpolationAlgorithm, Int32, DateMotionCollectionCartesian, IListJulianDate) | 
  
    Namespace: 
   AGI.Foundation.Geometry
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic VectorInterpolator(
	Axes definedInAxes,
	InterpolationAlgorithm interpolationAlgorithm,
	int degree,
	DateMotionCollection<Cartesian> data,
	IList<JulianDate> segmentBoundaryTimes
)
Public Sub New ( 
	definedInAxes As Axes,
	interpolationAlgorithm As InterpolationAlgorithm,
	degree As Integer,
	data As DateMotionCollection(Of Cartesian),
	segmentBoundaryTimes As IList(Of JulianDate)
)
public:
VectorInterpolator(
	Axes^ definedInAxes, 
	InterpolationAlgorithm^ interpolationAlgorithm, 
	int degree, 
	DateMotionCollection<Cartesian>^ data, 
	IList<JulianDate>^ segmentBoundaryTimes
)
new : 
        definedInAxes : Axes * 
        interpolationAlgorithm : InterpolationAlgorithm * 
        degree : int * 
        data : DateMotionCollection<Cartesian> * 
        segmentBoundaryTimes : IList<JulianDate> -> VectorInterpolatorParameters
- definedInAxes
 - Type: AGI.Foundation.GeometryAxes
The axes in which the vector is defined. - interpolationAlgorithm
 - Type: AGI.Foundation.NumericalMethods.AdvancedInterpolationAlgorithm
The interpolation algorithm to use to interpolate the vector. - 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