MeshGeometry3D.TextureCoordinates Property
.NET Framework 3.0
Gets or sets a collection of texture coordinates for the MeshGeometry3D.
Namespace: System.Windows.Media.Media3D
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
/** @property */ public PointCollection get_TextureCoordinates () /** @property */ public void set_TextureCoordinates (PointCollection value)
public function get TextureCoordinates () : PointCollection public function set TextureCoordinates (value : PointCollection)
<object> <object.TextureCoordinates> <PointCollection .../> </object.TextureCoordinates> </object>
<object TextureCoordinates="PointCollection" .../>
Property Value
PointCollection that contains the texture coordinates for the MeshGeometry3D.Texture coordinates determine how a Material is mapped to the vertices of the triangles that make up a mesh.
Note If no texture coordinates are specified for a MeshGeometry3D, its Material might not render as expected.
<GeometryModel3D> <GeometryModel3D.Geometry> <MeshGeometry3D Positions="-1 -1 0 1 -1 0 -1 1 0 1 1 0" Normals="0 0 1 0 0 1 0 0 1 0 0 1" TextureCoordinates="0 1 1 1 0 0 1 0 " TriangleIndices="0 1 2 1 3 2" /> </GeometryModel3D.Geometry> <GeometryModel3D.Material> <DiffuseMaterial> <DiffuseMaterial.Brush> <SolidColorBrush Color="Cyan" Opacity="0.3"/> </DiffuseMaterial.Brush> </DiffuseMaterial> </GeometryModel3D.Material> <!-- Translate the plane. --> <GeometryModel3D.Transform> <TranslateTransform3D OffsetX="2" OffsetY="0" OffsetZ="-1" > </TranslateTransform3D> </GeometryModel3D.Transform> </GeometryModel3D>
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.