Interface IConvertibleCurveT

IConvertibleCurve<T> interface

Defines methods that convert the current curve to a Step, Linear or Spline curve.

public interface IConvertibleCurve<T>
ParameterDescription
TThe type of a point of the curve

Properties

NameDescription
MaxDegree { get; }Gets a value indicating the maximum degree of the curve, current values are: 0: STEP. 1: LINEAR. 3: CUBIC.

Methods

NameDescription
Clone()Creates a clone of this curve.
ToLinearCurve()Gets a LINEAR interpolated curve. Use only when MaxDegree is 1.
ToSplineCurve()Gets a CUBIC interpolated curve. Use only when MaxDegree is 3.
ToStepCurve()Gets a STEP interpolated curve. Use only when MaxDegree is 0.

See Also