Overview
The Bézier curve representation is one that is utilized most frequently in computer graphics and geometric modeling. The curve is defined geometrically, which means that the parameters have geometric meaning - they are just points in three-dimensional space. It was developed by two competing European engineers in the late 1960s to attempt to draw automotive components.
In these notes, we develop the mathematical description for the Bézier curve of arbitrary degree by generalizing the development for the quadratic and cubic Bézier curves, creating a parameterized version of the curve.
To get a pdf version of these notes look
here.
Given the set of control points,
,
we can define a Bézier curve
of degree
by either of the following definitions:
Properties of the Bézier Curve
The Bézier curve has properties similar to that of the quadratic and cubic curve. These can be verified directly from the equations above.
Summary
Given a sequence of
control points, one can specify
a Bézier curve of degree
defined by these points. Two
definitions of the curve can be given: an analytic definition
specifying the blending of the control points with
Bernstein polynomials, and a geometric
definition specifying a recursive generation procedure that calculates
successive points on line segments developed from the control point
sequence.