(Translated by https://www.hiragana.jp/)
Bézier triangle - Wikipedia

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

nth-order Bézier triangle

edit

A general nth-order Bézier triangle has (n +1)(n + 2)/2 control points αあるふぁiβべーたjγがんまk where ijk are non-negative integers such that i + j + k = n.[1] The surface is then defined as

 

for all non-negative real numbers s + t + u = 1.

With linear order ( ), the resulting Bézier triangle is actually a regular flat triangle, with the triangle vertices equaling the three control points. A quadratic ( ) Bézier triangle features 6 control points which are all located on the edges. The cubic ( ) Bézier triangle is defined by 10 control points and is the lowest order Bézier triangle that has an internal control point, not located on the edges. In all cases, the edges of the triangle will be Bézier curves of the same degree.

Cubic Bézier triangle

edit
 
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) are the barycentric coordinates inside the triangle.[2][1]

Alternatively, a cubic Bézier triangle can be expressed as a more generalized formulation as

 

in accordance with the formulation of the § nth-order Bézier triangle.

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

edit

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,

 

 

 

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

edit

References

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

Further reading

edit
edit