Looking through some directx examples, I'm often seeing the structure for a vertex to be defined as such:
struct Vertex
{
vector position;
vector normal;
int textureMappingu;
int textureMappingv;
}
Under this type of vertex, what are textureMappingu/v for?