Convert a quadratic curve points to polynomial representation? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:23:23Z http://stackoverflow.com/feeds/question/573522 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/573522/convert-a-quadratic-curve-points-to-polynomial-representation 2 Convert a quadratic curve points to polynomial representation? Jeremy Rudd 2009-02-21T18:36:42Z 2009-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#573529 1 Answer by Jason S for Convert a quadratic curve points to polynomial representation? Jason S 2009-02-21T18:41:58Z 2009-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#573536 1 Answer by schnaader for Convert a quadratic curve points to polynomial representation? schnaader 2009-02-21T18:44:54Z 2009-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#573537 7 Answer by joel.neely for Convert a quadratic curve points to polynomial representation? joel.neely 2009-02-21T18:46:04Z 2009-02-21T18:46:04Z <p>B(t) = (1-t) * (1-t) * B0 + 2 * (1-t) * t * B1 + t * t * B2</p>