TrianglePointCollection.UVArray

Description

Returns the triangle point UV coordinates of this collection as a 2-dimensional Array of u,v values for every TrianglePoint, organized as: [u,v values][TrianglePoint]

C# Syntax

// get accessor

Object rtn = TrianglePointCollection.UVArray;

Examples

VBScript Example

set root = application.activeproject.activescene.root

set obj = root.addgeometry( "Cube", "MeshSurface" )

set triangle = obj.activeprimitive.geometry.Triangles(0)

set Points = triangle.Points

a = triangle.points.uvarray

for i = LBound(a,2) to UBound(a,2)

	logmessage "p.uv = " & a(0,i) & "," & a(1,i)

next