TriangleCollection.UVArray
 
 
 

TriangleCollection.UVArray

Description

Returns the TrianglePoint UV coordinates for this triangle collection as a 3-dimensional Array of u,v values for each TrianglePoint of each Triangle, organized as: [u,v values][TrianglePoint][Triangle]

C# Syntax

// get accessor
Object rtn = TriangleCollection.UVArray;

Examples

VBScript Example

set root = Application.ActiveProject.ActiveScene.Root
set obj = root.AddGeometry( "Cube", "MeshSurface" )
a = obj.ActivePrimitive.Geometry.Triangles.uvarray
for i=LBound( a, 3 ) to UBound( a, 3 )
        for j=LBound( a, 2 ) to UBound( a, 2 )
                Application.LogMessage "t" & i & ".p" & j & ".uv: " & a(0,j,i) & "," & a(1,j,i)
        next
next