Bézier curve
From Wikipedia, the free encyclopedia
Jump to: navigation, search
In the mathematical field of numerical analysis, a Bézier curve is a parametric curve important in computer graphics. Generalizations of Bézier curves to higher dimensions are called Bézier surfaces, of which the Bézier triangleis a special case.
Bézier curves were widely publicised in 1962 by the French engineer Pierre Bézier, who used them to designautomobile bodies. The curves were first developed in 1959 by Paul de Casteljau using de Casteljau's algorithm, anumerically stable method to evaluate Bézier curves.
Contents[hide] |
[edit] Examination of cases
[edit] Linear Bézier curves
Given points P0 and P1, a linear Bézier curve is just a straight line between those two points. The curve is given by
and is equivalent to linear interpolation.
[edit] Quadratic Bézier curves
A quadratic Bézier curve is the path traced by the function B(t), given points P0, P1, and P2,
TrueType fonts use Bézier splines composed of quadratic Bézier curves.
[edit] Cubic Bézier curves
Four points P0, P1, P2 and P3 in the plane or in three-dimensional space define a cubic Bézier curve. The curve starts at P0 going toward P1 and arrives at P3 coming from the direction of P2. Usually, it will not pass through P1 or P2; these points are only there to provide directional information. The distance between P0 and P1 determines "how long" the curve moves into direction P2 before turning towards P3.
The parametric form of the curve is:
Modern imaging systems like PostScript, Asymptote and Metafont use Bézier splines composed of cubic Bézier curves for drawing curved shapes.
[edit] Generalization
The Bézier curve of degree n can be generalized as follows. Given points P0, P1,..., Pn, the Bézier curve is
For example, for n = 5:
This formula can be expressed recursively as follows: Let
denote the Bézier curve determined by the points P0, P1,..., Pn. Then
In words, the degree n Bézier curve is a linear interpolation between two degree n − 1 Bézier curves.
图例示意
Quadratic curves
For quadratic Bézier curves one can construct intermediate points Q0 and Q1 such that as t varies from 0 to 1:
- Point Q0 varies from P0 to P1 and describes a linear Bézier curve.
- Point Q1 varies from P1 to P2 and describes a linear Bézier curve.
- Point B(t) varies from Q0 to Q1 and describes a quadratic Bézier curve.
| Construction of a quadratic Bézier curve | Animation of a quadratic Bézier curve, t in [0,1] |
[edit] Higher-order curves
For higher-order curves one needs correspondingly more intermediate points. For cubic curves one can construct intermediate points Q0, Q1 & Q2 that describe quadratic Bézier curves, and points R0 & R1 that describe linear Bézier curves:
| Construction of a cubic Bézier curve | Animation of a cubic Bézier curve, t in [0,1] |
For fourth-order curves one can construct intermediate points Q0, Q1, Q2 & Q3 that describe cubic Bézier curves, points R0, R1 & R2 that describe quadratic Bézier curves, and points S0 & S1 that describe linear Bézier curves:
| Construction of a quartic Bézier curve | Animation of a quartic Bézier curve, t in [0,1] |
没有评论:
发表评论