Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Forward Difference Calculation of Bezier Curves


November 1997/Forward Difference Calculation of Bezier Curves/Listing 2

Listing 2: A function to compute points along a Bezier curve

/* ------------------------------------ ComputeBezierPoints ------*/

   /*    Compute "numPoints" points along the cubic Bezier curve
    *    described by the four control points ("b0x", "b0y"),
    *    ("b1x", "b1y"), ("b2x", "b2y"), and ("b3x", "b3y").  Store
    *    these points into the array "vertices", which *must* be
    *    large enough to hold all of them.  "numPoints" must be at
    *    least 2.  The first and last points stored in "vertices"
    *    will be the endpoints of the curve, which, of course, are
    *    the same as the first and last control points. (cab)
    */ 

void ComputeBezierPoints(
            VertexRec vertices[], int numPoints,
            double b0x, double b0y, 
            double b1x, double b1y, 
            double b2x, double b2y, 
            double b3x, double b3y
) 
{
    double ax, ay, bx, by, cx, cy, dx, dy;
    int numSteps, i;
    double h;
    double pointX, pointY;
    double firstFDX, firstFDY;
    double secondFDX, secondFDY;
    double thirdFDX, thirdFDY;

    assert(vertices != NULL);
    assert(numPoints >= 2);

        /* Compute polynomial coefficients from Bezier points */

    ax = -b0x + 3 * b1x + -3 * b2x + b3x;
    ay = -b0y + 3 * b1y + -3 * b2y + b3y;

    bx = 3 * b0x + -6 * b1x + 3 * b2x;
    by = 3 * b0y + -6 * b1y + 3 * b2y;

    cx = -3 * b0x + 3 * b1x;
    cy = -3 * b0y + 3 * b1y;

    dx = b0x;
    dy = b0y;

        /* Set up the number of steps and step size */

    numSteps = numPoints - 1;        //    arbitrary choice
    h = 1.0 / (double) numSteps;    //    compute our step size

        /* Compute forward differences from Bezier points and "h" */

    pointX = dx;
    pointY = dy;

    firstFDX = ax * (h * h * h) + bx * (h * h) + cx * h;
    firstFDY = ay * (h * h * h) + by * (h * h) + cy * h;


    secondFDX = 6 * ax * (h * h * h) + 2 * bx * (h * h);
    secondFDY = 6 * ay * (h * h * h) + 2 * by * (h * h);

    thirdFDX = 6 * ax * (h * h * h);
    thirdFDY = 6 * ay * (h * h * h);    

        /* Compute points at each step */

    vertices[0].x = (int)pointX;
    vertices[0].y = (int)pointY;

    for (i = 0; i < numSteps; i++) {

        pointX += firstFDX;
        pointY += firstFDY;

        firstFDX += secondFDX;
        firstFDY += secondFDY;

        secondFDX += thirdFDX;
        secondFDY += thirdFDY;

        vertices[i + 1].x = (int)pointX;
        vertices[i + 1].y = (int)pointY;

    }
}
/* End of File */

Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.