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.


An example Bézier triangle with control points marked
The corners of the triangle are the points α3, β3 and γ3. The edges of the triange are themselves Bézier curves, with the same control points as the 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 less control points. With the exponent 1, 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.

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.

An advantage of Bézier triangles in computer graphics is, they are smooth, and can easily be approximated by regular triangles, by recursively dividing the bézier triangle into two separate Bézier triangles, until they are considered sufficiently small, using only addition and division by two, not requiring any floating point arithmetic whatsoever.

  • 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:=(αβ23)/2
   αβ2:=(α2β+αβ2)/2  β3:=(αβ23)/2
α2β:=(α32β)/2  αβ2:=(α2β+αβ2)/2  β3:=(αβ23)/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.

See also: