position spheres along a bezier curve - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T22:53:48Zhttp://stackoverflow.com/feeds/question/1061633http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1061633/position-spheres-along-a-bezier-curve1position spheres along a bezier curveNeatRobot2009-06-30T03:49:42Z2009-06-30T06:00:55Z
<p>I am trying a couple of tutorials from <a href="http://nehe.gamedev.net" rel="nofollow">http://nehe.gamedev.net</a>, in order to learn openGL programming, I would like to position spheres along a Bezier curve such that they appear as a string of pearls. how can I position such spheres along the curve. I am drawing the curve using de Casteljau's algorithm and hence can get the XYZ points on the curve.</p>
http://stackoverflow.com/questions/1061633/position-spheres-along-a-bezier-curve/1061897#10618970Answer by Naaff for position spheres along a bezier curveNaaff2009-06-30T05:36:54Z2009-06-30T05:36:54Z<p>If your spheres are small enough relative to the overall length of the Bezier curve, you can just position your spheres at even intervals to get an appearance similar to a string of pearls. (If the spheres are relatively large then you'll have to start worrying about sphere overlap more -- not an easy problem, and probably not very instructive for learning OpenGL.)</p>
<p>The parameter value <code>t</code> of a Bezier curve varies from <code>0</code> to <code>1</code>. To evaluate your Bezier curve at 10 locations (the ends and eight interior points) you can do something like this:</p>
<pre><code>for( int i = 0; i <= 9; ++i )
{
double t = i / 9.0;
double x, y;
EvalBezier( t, x, y );
DrawSphere( x, y, radius );
}
</code></pre>
<p>Where <code>EvalBezier( t, x, y )</code> fills in <code>(x,y)</code> for a given <code>t</code>. Just pick <code>radius</code> to give you a pleasing result. If you want to try to pick <code>radius</code> automatically, just use half the minimum distance from the point <code>i</code> to points <code>i-1</code> and <code>i+1</code> as a rough estimate. If you do this, remember to handle the end points specially, using either only the next or previous points (whichever you have).</p>