This is Similar to a previous question I asked about the Cubic Bezier. I've got a start point, an endpoint, and a point that is meant to lie along a Quadratic Bezier. Given these three points I want to be able to draw a QuadraticBezierSegment in WPF, but I need the single ControlPoint value (in the QuadraticBezierSegment it's Point1) in order to draw it.
Is there a calculation or means whereby I can determine that value and thus draw my QuadraticBezier?
Thanks!
The best quadratic fit is simpler than the best cubic fit. Here's some code: