Cluster.FindIndex

説明

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

スクリプト 構文

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