info prev up next book cdrom email home

Bézier Curve

\begin{figure}\begin{center}\BoxedEPSF{Bezier.epsf scaled 900}\end{center}\end{figure}

Given a set of $n$ control points, the corresponding Bézier curve (or Bernstein-Bézier Curve) is given by

\begin{displaymath}
{\bf C}(t)=\sum_{i=0}^n {\bf P}_iB_{i,n}(t),
\end{displaymath}

where $B_{i,n}(t)$ is a Bernstein Polynomial and $t\in[0,1]$.


A ``rational'' Bézier curve is defined by

\begin{displaymath}
{\bf C}(t)={\sum_{i=0}^n B_{i,p}(t)w_i{\bf P}_i\over \sum_{i=0}^n B_{i,p}(t)w_i},
\end{displaymath}

where $p$ is the order, $B_{i,p}$ are the Bernstein Polynomials, ${\bf P}_i$ are control points, and the weight $w_i$ of ${\bf P}_i$ is the last ordinate of the homogeneous point ${\bf P}_i^w$. These curves are closed under perspective transformations, and can represent Conic Sections exactly.


The Bézier curve always passes through the first and last control points and lies within the Convex Hull of the control points. The curve is tangent to ${\bf P}_1-{\bf P}_0$ and ${\bf P}_n-{\bf P}_{n-1}$ at the endpoints. The ``variation diminishing property'' of these curves is that no line can have more intersections with a Bézier curve than with the curve obtained by joining consecutive points with straight line segments. A desirable property of these curves is that the curve can be translated and rotated by performing these operations on the control points.


Undesirable properties of Bézier curves are their numerical instability for large numbers of control points, and the fact that moving a single control point changes the global shape of the curve. The former is sometimes avoided by smoothly patching together low-order Bézier curves. A generalization of the Bézier curve is the B-Spline.

See also B-Spline, NURBS Curve




© 1996-9 Eric W. Weisstein
1999-05-26