How can I draw Quadratic Curve through 3 points by using C# System.Drawing namespace?
|
|
|||
|
|
|
Do you want to draw a quadratic curve that goes through three given points, or do you want to draw a quadratic Bézier curve that uses three given points? If what you want is a Bézier curve, try this:
Which I just shamelessly lifted from the MSDN documentation for Edit: If what you really want is to fit a quadratic curve, then you need to do a curve fitting or polynomial interpolation on your points. Perhaps this answer from Ask Dr. Math will help. |
|||
|
|
