MeshGeometry.TextureCoordinates Property
Gets the collection that contains the texture coordinates for all vertices of the MeshGeometry.
Syntax
public FloatCollection TextureCoordinates { get; }
Property Value
Default: Empty collection.
The texture coordinates for all vertices of the mesh.
Remarks
If this collection is not empty, it should contain texture coordinates; one (u, v) pair for each vertex in the Vertices array. These will be used if the Material used to renderer the mesh contains any texture maps, and no corresponding map appliers.
The u and v texture coordinates for the vertex at index i are specified at index 2*i and 2*i+1 respectively.
Platforms
Windows, Linux, Android