Bézier triangle

A Bézier triangle is a special type of Bézier surface, which is created by (linear, quadratic, cubic or higher degree) interpolation of control points.

Cubic Bézier triangle

An example Bézier triangle with control points marked

A cubic Bézier triangle is a surface with the equation

where α3, β3, γ3, α2β, αβ2, β2γ, βγ2, αγ2, α2γ and αβγ are the control points of the triangle and s, t, u (with 0 ≤ s, t, u ≤ 1 and s+t+u=1) the barycentric coordinates inside the triangle.[1] [2]

The corners of the triangle are the points α3, β3 and γ3. The edges of the triangle are themselves Bézier curves, with the same control points as the Bézier triangle.

By removing the γu term, a regular Bézier curve results. Also, while not very useful for display on a physical computer screen, by adding extra terms, a Bézier tetrahedron or Bézier polytope results.

Due to the nature of the equation, the entire triangle will be contained within the volume surrounded by the control points, and affine transformations of the control points will correctly transform the whole triangle in the same way.

Halving a cubic Bézier triangle

An advantage of Bézier triangles in computer graphics is that dividing the Bézier triangle into two separate Bézier triangles requires only addition and division by two, rather than floating point arithmetic. This means that while Bézier triangles are smooth, they can easily be approximated using regular triangles by recursively dividing the triangle in two until the resulting triangles are considered sufficiently small.

The following computes the new control points for the half of the full Bézier triangle with the corner α3, a corner halfway along the Bézier curve between α3 and β3, and the third corner γ3.

equivalently, using addition and division by two only,
        β3 := (αβ2 + β3)/2
    αβ2 := (α2β + αβ2)/2   β3 := (αβ2 + β3)/2
α2β := (α3 + α2β)/2   αβ2 := (α2β + αβ2)/2   β3 := (αβ2 + β3)/2
    β2γ := (αβγ + β2γ)/2
αβγ := (α2γ + αβγ)/2   β2γ:=(αβγ+β2γ)/2
βγ2 := (αγ2 + βγ2)/2
where := means to replace the vector on the left with the vector on the right.
Note that halving a bézier triangle is similar to halving Bézier curves of all orders up to the order of the Bézier triangle.

nth-order Bézier triangle

It is also possible to create quadratic or other degrees of Bézier triangles, by changing the exponent in the original equation, in which case there will be more or fewer control points. With the exponent 1 (one), the resulting Bézier triangle is actually a regular flat triangle. In all cases, the edges of the triangle will be Bézier curves of the same degree.

A general nth-order Bézier triangle has (n + 1)(n + 2)/2 control points a i β j γ k where i, j, k are nonnegative integers such that i + j + k = n. The surface is then defined as

for all nonnegative real numbers s + t + u = 1.

See also

References

  1. 3D Surface Rendering in Postscript
  2. Farin, Gerald (2002), Curves and surfaces for computer-aided geometric design (5 ed.), Academic Press Science & Technology Books, ISBN 978-1-55860-737-8

External links

This article is issued from Wikipedia - version of the 11/10/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.