Calculation of cubic Bézier with known halfway point - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T13:22:59Zhttp://stackoverflow.com/feeds/question/404861http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/404861/calculation-of-cubic-bezier-with-known-halfway-point4Calculation of cubic Bézier with known halfway pointLoci2009-01-01T11:05:02Z2009-07-07T20:33:46Z
<p>I know:</p>
<ul>
<li><p>The control points a and d (start and end point of a 2D cubic bezier curve)</p></li>
<li><p>The slopes a->b, c->d, and b->c (b,c the other control points)</p></li>
<li><p>Where the halfway point of the <a href="http://en.wikipedia.org/wiki/B%C3%A9zier_curve" rel="nofollow">Bézier curve</a> is.</p></li>
</ul>
<p>Now, given this information, what is the formula for the positions of control points b and c ?</p>
http://stackoverflow.com/questions/404861/calculation-of-cubic-bezier-with-known-halfway-point/404953#4049531Answer by David Lehavi for Calculation of cubic Bézier with known halfway pointDavid Lehavi2009-01-01T13:39:58Z2009-01-01T13:44:24Z<p>Let's say your slopes are normalized, then for some u,v you have</p>
<pre><code>u * slope(a->b)+a = b, v * slope(c->d)+d = c
</code></pre>
<p>you know the values of a,d, and <code>q:=(a+b+c+d)/8</code> (the halfway point of the curve)
so <code>c = 8(q-a-d-b)</code></p>
<p>plugging the above equations in the last one you get</p>
<pre><code>v * slope(c->d)+d = 8(q-a-d-a-u * slope(a->b))
</code></pre>
<p>which is 2 equations (a 2d vector equation) in two variables (u,v)</p>
<p>You don't need the third slope.</p>
http://stackoverflow.com/questions/404861/calculation-of-cubic-bezier-with-known-halfway-point/1093856#10938560Answer by Naaff for Calculation of cubic Bézier with known halfway pointNaaff2009-07-07T18:02:45Z2009-07-07T18:02:45Z<p>I know this question is old, but there is no correct or complete answer provided, so I thought I'd chime in with a solution. Note that David's calculations contain several errors and his solution is incomplete even if these errors are corrected.</p>
<p>First, define vectors <code>T0</code>, <code>T1</code> and <code>T2</code> using the three slopes:</p>
<pre><code>T0 = ( b - a ) / u0
T1 = ( c - b ) / u1
T2 = ( d - c ) / u2
</code></pre>
<p>If we knew both the <em>direction</em> and <em>distance</em> between each pair of control points then we would not need the scale factors <code>u0</code>, <code>u1</code> and <code>u2</code>. Since we only know slope then <code>u0</code>, <code>u1</code> and <code>u2</code> are unknown scalar quantities. Also, we assume that <code>u0</code>, <code>u1</code> and <code>u2</code> are nonzero since slope is defined.</p>
<p>We can rewrite these equations in several different ways to obtain expressions for each control point in terms of the other control points. For example:</p>
<pre><code>b = a + T0*u0
c = b + T1*u1
d = c + T2*u2
</code></pre>
<p>The question also states that we have the "halfway point" of the cubic Bezier curve. I take this to mean we have the point at the midpoint of the curve's parameter range. I will call this point <code>p</code>:</p>
<pre><code>p = ( a + 3*b + 3*c + d ) / 8
</code></pre>
<p>Rewriting with unknowns on the left hand side yields:</p>
<pre><code>b + c = ( 8*p - a - d ) / 3
</code></pre>
<p>We can now substitute for <code>b</code> and <code>c</code> in various ways using the earlier expressions. It turns out that ambiguities arise when we have parallel vectors <code>T0</code>, <code>T1</code> or <code>T2</code>. There are four cases to consider.</p>
<p><strong>Case 1: <code>T0</code> is not parallel to <code>T1</code></strong></p>
<p>Substitute <code>b = a + T0*u0</code> and <code>c = a + T0*u0 + T1*u1</code> and solve for <code>u0</code> and <code>u1</code>:</p>
<pre><code>2*T0*u0 + T1*u1 = ( 8*p - 7*a - d ) / 3
</code></pre>
<p>This is two equations and two unknowns since <code>T0</code> and <code>T1</code> are vectors. Substitute <code>u0</code> and <code>u1</code> back into <code>b = a + T0*u0</code> and <code>c = a + T0*u0 + T1*u1</code> to obtain the missing control points <code>b</code> and <code>c</code>.</p>
<p><strong>Case 2: <code>T1</code> is not parallel to <code>T2</code></strong></p>
<p>Substitute <code>c = d - T2*u2</code> and <code>b = d - T2*u2 - T1*u1</code> and solve for <code>u1</code> and <code>u2</code>:</p>
<pre><code>T1*u1 + 2*T2*u2 = ( a + 7*d - 8*p ) / 3
</code></pre>
<p><strong>Case 3: <code>T0</code> is not parallel to <code>T2</code></strong></p>
<p>Substitute <code>b = a + T0*u0</code> and <code>c = d - T2*u2</code> and solve for <code>u0</code> and <code>u2</code>:</p>
<pre><code>T0*u0 - T2*u2 = ( 8*p - 4*a - 4*d ) / 3
</code></pre>
<p><strong>Case 4: <code>T0</code>, <code>T1</code> and <code>T2</code> are all parallel</strong></p>
<p>In this case <code>a</code>, <code>b</code>, <code>c</code> and <code>d</code> are all collinear and <code>T0</code>, <code>T1</code> and <code>T2</code> are all equivalent to within a scale factor. There is not enough information to obtain a unique solution. One simple solution would be to simply pick <code>b</code> by setting <code>u0 = 1</code>:</p>
<pre><code>b = a + T0
(a + T0) + c = ( 8*p - a - d ) / 3
c = ( 8*p - 4*a - d - 3*T0 ) / 3
</code></pre>
<p>An infinite number of solutions exist. In essence, picking <code>b</code> defines <code>c</code> or picking <code>c</code> will define <code>b</code>.</p>
<p><strong>Extending to 3D</strong></p>
<p>The question specifically asked about planar Bezier curves, but I think it's interesting to note that the point <code>p</code> is not necessary when extending this problem to a non-planar 3D cubic Bezier curve. In this case, we can simply solve this equation for <code>u0</code>, <code>u1</code> and <code>u2</code>:</p>
<pre><code>T0*u0 + T1*u1 + T2*u2 = d - a
</code></pre>
<p>This is three equations (the vectors are 3D) and three unknowns (<code>u0</code>, <code>u1</code> and <code>u2</code>). Substitution into <code>b = a + T0*u0</code> and <code>c = b + T1*u1</code> or <code>c = d - T2*u2</code> yields <code>b</code> and <code>c</code>.</p>