I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve.
Using this data, how can I derive the polynomial representation of the curve?

|
1
|
I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve. Using this data, how can I derive the polynomial representation of the curve?
|
||
|
|
|
|
B(t) = (1-t) * (1-t) * B0 + 2 * (1-t) * t * B1 + t * t * B2 |
||||
|
|
|
Wikipedia has a section about this. Perhaps this helps. |
||
|
|
|
|
Oog. That would be tricky. Beziers are parametrized curves, namely:
where t=0 yields one endpoint and t=1 yields the other. You could technically figure out how to eliminate "t" and get an equation in x and y, but it would not be a polynomial like y = a + bx + cx2 ...; it would be an equation h(x,y) = 0 where h is probably somewhat ugly. |
||
|
|