Finding min/max of quadratic bezier with CoreGraphics - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T00:02:29Zhttp://stackoverflow.com/feeds/question/999549http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/999549/finding-min-max-of-quadratic-bezier-with-coregraphics1Finding min/max of quadratic bezier with CoreGraphicsunscene2009-06-16T04:20:27Z2009-10-01T05:14:39Z
<p>I am using CoreGraphics to draw a quadratic bezier but want to computer the min/max value of the curve. I am not from a mathematical background so this has become a bit troublesome. Does anyone have any articles or ideas about how to solve this?</p>
http://stackoverflow.com/questions/999549/finding-min-max-of-quadratic-bezier-with-coregraphics/999620#9996201Answer by nsanders for Finding min/max of quadratic bezier with CoreGraphicsnsanders2009-06-16T04:51:35Z2009-06-16T04:51:35Z<p>Calculus gives the standard box of tricks for finding the min/max of continuous, differentiable curves. </p>
<p>Here is a sample discussion:</p>
<p><a href="http://newsgroups.derkeiler.com/Archive/Comp/comp.graphics.algorithms/2005-07/msg00334.html" rel="nofollow">http://newsgroups.derkeiler.com/Archive/Comp/comp.graphics.algorithms/2005-07/msg00334.html</a></p>
http://stackoverflow.com/questions/999549/finding-min-max-of-quadratic-bezier-with-coregraphics/1099291#10992910Answer by Naaff for Finding min/max of quadratic bezier with CoreGraphicsNaaff2009-07-08T16:52:18Z2009-07-08T16:52:18Z<p>For a quadratic Bezier, this is actually quite simple.</p>
<p>Define your three control points as <code>P0 = (x0,y0)</code>, <code>P1 = (x2,y2)</code> and <code>P2 = (x2,y2)</code>. To find the extrema in <code>x</code>, solve this equation:</p>
<pre><code>t = (x0 - x1) / (x0 - 2*x1 + x2)
</code></pre>
<p>If <code>0 <= t <= 1</code>, then evaluate your curve at <code>t</code> and store the location as <code>Px</code>. Do the same thing for <code>y</code>:</p>
<pre><code>t = (y0 - y1) / (y0 - 2*y1 + y2)
</code></pre>
<p>Again, if <code>0 <= t <= 1</code>, evaluate your curve at <code>t</code> and store the location as <code>Py</code>. Finally, find the axis-aligned bounding box containing <code>P0</code>, <code>P2</code>, <code>Px</code> (if found) and <code>Py</code> (if found). This bounding box will also tightly bound your 2D quadratic Bezier curve.</p>