Convert a quadratic curve points to polynomial representation? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T07:23:23Zhttp://stackoverflow.com/feeds/question/573522http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/573522/convert-a-quadratic-curve-points-to-polynomial-representation2Convert a quadratic curve points to polynomial representation?Jeremy Rudd2009-02-21T18:36:42Z2009-02-21T18:46:04Z
<p>I have the X,Y of 2 <em>end</em> points and 1 <em>bezier</em> point, of a <em>Quadratic Bezier</em> curve.</p>
<p>Using this data, how can I derive the <em>polynomial representation</em> of the curve?</p>
<p><img src="http://www.euclidraw.com/Eng_fls/EUC_htmls/Bezier_fls/quad.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/573522/convert-a-quadratic-curve-points-to-polynomial-representation/573529#5735291Answer by Jason S for Convert a quadratic curve points to polynomial representation?Jason S2009-02-21T18:41:58Z2009-02-21T18:41:58Z<p>Oog. That would be tricky. <a href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve" rel="nofollow">Beziers</a> are parametrized curves, namely:</p>
<pre><code>x = f(t)
y = g(t)
</code></pre>
<p>where t=0 yields one endpoint and t=1 yields the other. </p>
<p>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 + cx<sup>2</sup> ...; it would be an equation h(x,y) = 0 where h is probably somewhat ugly.</p>
http://stackoverflow.com/questions/573522/convert-a-quadratic-curve-points-to-polynomial-representation/573536#5735361Answer by schnaader for Convert a quadratic curve points to polynomial representation?schnaader2009-02-21T18:44:54Z2009-02-21T18:44:54Z<p><a href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Polynomial_form" rel="nofollow">Wikipedia</a> has a section about this. Perhaps this helps.</p>
http://stackoverflow.com/questions/573522/convert-a-quadratic-curve-points-to-polynomial-representation/573537#5735377Answer by joel.neely for Convert a quadratic curve points to polynomial representation?joel.neely2009-02-21T18:46:04Z2009-02-21T18:46:04Z<p>B(t) = (1-t) * (1-t) * B0 + 2 * (1-t) * t * B1 + t * t * B2</p>