| Table of contents |
|
2 B?ier surfaces in computer graphics 3 Bibliography 4 External links |
B?ier surfaces were first described in 1972 by the French engineer Pierre Bézier who used them to design automobile bodies. B?ier surfaces can be of any degree, but bicubic B?ier surfaces generally provide enough degrees of freedom for most applications.
A B?ier surface of order (n,m) can be defined in terms of a set of (n+1)(m+1) control points ki,j for integer indices i = 0 to n, j = 0 to m.
Then the formula for the surface defined by these control points can be written as a mapping of the unit square in the 2-D parameter space (u, v), into the vector space of the control points thus:
Formula
where
is a one-dimensional "blending function", defined as a polynomial in u, weighted by , called the binomial coefficient, representing the number of ways i items can be chosen from n items.
Some properties of B?ier surfaces:
B?ier patch meshes are superior to meshes of triangles as a representation of smooth surfaces, since they are much more compact, easier to manipulate, and have much better continuity properties. In addition, other common parametric surfaces such as spheres and cylinders can be well approximated by relatively small numbers of cubic B?ier patches.
However, B?ier patch meshes are difficult to render directly. One problem with B?ier patches is that calculating their intersections with lines is difficult, making them awkward for pure ray tracing or other direct geometric techniques which do not use subdivision or successive approximation techniques.
They are also difficult to combine directly with perspective projection algorithms.
For this reason, B?ier patch meshes are in general eventually decomposed into meshes of triangles by 3D rendering pipelines. In high-quality rendering, the subdivision is adjusted to be so fine that the individual triangle boundaries cannot be seen. To avoid a "blobby" look, fine detail is usually applied to B?ier surfaces at this stage using texture maps, bump maps and other pixel shader techniques.
The following two paragraphs are probably correct, can someone verify?
A B?ier patch of degree (m, n) may be constructed out of two B?ier triangles of degree m+n, or out of a single B?ier triangle of degree m+n, with the input domain as a square instead of as a triangle.
A B?ier triangle of degree m may also be constructed out of a B?ier surface of degree (m, m), with the control points so that one edge is squashed to a point, or with the input domain as a triangle instead of as a square.
B?ier surfaces in computer graphics
See also:
Bibliography
External links
To do: