Click or drag to resize
NChartBezierInterpolator Class
The NChartBezierInterpolator class provides bezier interpolator. If it is used, the animated values will changed in time as follows: v(t) = (1 - t)^2 * v_from + 2 * t * (1 - t) * v_c + t^2 * v_from, where v_from, v_to are respectively the start and end values, v_c is control point and t is the time.
Inheritance Hierarchy
SystemObject
  NChart3D_UWPNChartBezierInterpolator

Namespace:  NChart3D_UWP
Assembly:  NChart3D_UWP (in NChart3D_UWP.dll)
Syntax
public sealed class NChartBezierInterpolator : INChartInterpolator

The NChartBezierInterpolator type exposes the following members.

Constructors
  NameDescription
Public methodNChartBezierInterpolator
Initialize the bezier iterpolator with given control point.
Top
Properties
  NameDescription
Public propertyControlPoint
Control point of bezier interpolator.
Top
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
See Also