-
Notifications
You must be signed in to change notification settings - Fork 2
Barycentric Coordinates
EvilCoincoin edited this page Mar 29, 2023
·
3 revisions
This is when Bary loses his way home after a drink and can't seem to find his way back.
A coordinate system based on weights between a set of points in space.
Barycentric Coordinates, as typically used in the industry, is a 2 components coordinate system that defines a position within a triangle. They are often returned as results of intersection operation on mesh or triangles, or for interpolation purposes.
Let T
be a triangle defined by it's points P0
, P1
and P2
The barycentric coordinates U
and V
defines a unique position X
within that triangle with:
X = P0*W + P1*U + P2*V
where W = 1-U-V
or
X = P0 + (P1-P0)*U + (P2-P0)*V