Finding the Control Points of a Bezier Curve

How a Bezier Curve is calculated taken from stackoverflow.com

I had an interesting problem while working on a web application using the Canvas to draw Bezier Curves. I had to find the two control points required to draw the curve when I only knew the start point, end point, and one other point on the curve. I couldn’t find anything on the internet so I thought I’d write an article on my findings.

Read more