I am writing a "painter", i.e. the user leads the finger across the screen, and I get an array of points {X1, Y1; X2, Y2; X3, Y3; .... Xn, Yn}
Question: How can I convert this array into Bezier curves (they can be drawn on Canvas
using standard methods)? Language is not important, I need to understand the mathematical model
Question2: are there standard libraries for solving this problem?