AGI STK Graphics 11 Send comments on this topic.
SetTextureCoordinates Method (IAgStkGraphicsTriangleMeshPrimitiveOptionalParameters)
See Also  Example
TextureCoordinates
An array containing the texture coordinates (in the order x, y) for the mesh. There must be one texture coordinate for each position passed to the Triangle Mesh Primitive's Set method.

Description

Defines a collection of texture coordinates.

Syntax

[Visual Basic .NET]
Public Sub SetTextureCoordinates( _
   ByRef TextureCoordinates() As Variant _
) 

Parameters

TextureCoordinates
An array containing the texture coordinates (in the order x, y) for the mesh. There must be one texture coordinate for each position passed to the Triangle Mesh Primitive's Set method.

Example

Shows the format of the TextureCoordinates parameter when setting per vertex texture coordinates.
[C#] Copy Code
Array coordinates = new object[] 

    0, 0, 1, 1, 
    0, 0, 1, 1 
}; 
 
IAgStkGraphicsTriangleMeshPrimitiveOptionalParameters parameters = sceneManager.Initializers.TriangleMeshPrimitiveOptionalParameters.Initialize(); 
parameters.SetTextureCoordinates(ref coordinates); 
 
Shows the format of the TextureCoordinates parameter when setting per vertex texture coordinates.
[Visual Basic .NET] Copy Code
Dim coordinates As Array = New Object() {0, 0, 1, 1, 0, 0, _
    1, 1}

Dim parameters As IAgStkGraphicsTriangleMeshPrimitiveOptionalParameters = sceneManager.Initializers.TriangleMeshPrimitiveOptionalParameters.Initialize()
parameters.SetTextureCoordinates(coordinates)

See Also

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK 11.1 Programming Interface