Cluster.FindIndex

説明

クラスタを、指定されたジオメトリインデックスについて検索し、対応するクラスタインデックスを戻します。

C#構文

Int32 Cluster.FindIndex( Object vItem );

スクリプト構文

oLong = Cluster.FindIndex( Geometry index );

戻り値

項目のクラスタインデックスを、Longとして戻します。項目が検出されない場合は -1 を 戻します。

パラメータ

パラメータ タイプ 説明
Geometry index Integer ジオメトリコンポーネントのインデックス

VBScript の例

set oGrid = ActiveSceneRoot.AddGeometry("Grid","MeshSurface")

set oCluster = oGrid.ActivePrimitive.Geometry.AddCluster( siVertexCluster, "PointClusterOnGrid", array(0,3,9))

for each oPnt in oGrid.ActivePrimitive.Geometry.Polygons(0).Points

	indice = oCluster.FindIndex(oPnt.Index)

	LogMessage "Cluster index for geometry index " & oPnt.Index & " is : " & indice

next

関連項目

Cluster.Elements Cluster.FindIndices