
Interpolate 2D Points Using Bezier Curves in WPF (and Javscript)
[Original Article] Sample on GitHub (WPF) Sample on Github (JavaScript) Live example in JavaScript (ReactJs) Introduction Interpolating points sometimes is hard mathematical work, even more, if the points are ordered. The solution is to create a function using the points and using an extra parameter t that represents the time dimension. This often is called a parametric representation of the curve. This article shows a simple way of interpolating a set of points using Bezier curves in WPF. ...