TrianglePointCollection.IndexArray

説明

このコレクションのトライアングルポイントのインデックスをInteger値の 1DArrayとして戻します。

C#構文

// get accessor

Object rtn = TrianglePointCollection.IndexArray;

VBScript の例

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.indexarray

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

	logmessage "p.index = " & a(i)

next