TrianglePoint.UVArray

説明

このトライアングルポイントの UV 座標を、Integer 値の 1D Array([u,v 値])として戻します。

C#構文

// get accessor

Object rtn = TrianglePoint.UVArray;

VBScript の例

set root = application.activeproject.activescene.root

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

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

for each p in triangle.Points

	a = p.UVArray

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

next