struct MAGES::MeshDeformations::Editor::AlbedoBaker::TriangleHit

A hit on the original mesh: a triangle index plus its barycentric weights (for the triangle’s three vertices, in order).

struct TriangleHit
{
    // fields

    int Triangle;
    float3 Barycentric;
};