barycentrictype
Barycentrictype is a term used in geometry and computer graphics to denote a data representation and associated operations for barycentric coordinates with respect to a simplex, such as a triangle in two dimensions or a tetrahedron in three dimensions. A barycentrictype encapsulates the weights assigned to the simplex vertices and provides methods for computing, normalizing, and applying these weights to interpolate attributes or evaluate linear functions.
In a typical implementation, a barycentrictype stores a set of barycentric weights w0, w1, w2 (and w3
Applications include surface shading in computer graphics, texture mapping, finite element analysis, and geometric search algorithms
Relation to theory: It is closely related to barycentric coordinates, affine geometry, and mesh processing. While
See also: barycentric coordinates, generalized barycentric coordinates, affine transformation, interpolation, finite element method, mesh processing.