クラスタを、指定されたジオメトリインデックスについて検索し、対応するクラスタインデックスを戻します。
oLong = Cluster.FindIndex( Geometry index ); |
項目のクラスタインデックスを、Longとして戻します。項目が検出されない場合は-1を戻します。
パラメータ | タイプ | 詳細 |
---|---|---|
Geometry index | Integer | ジオメトリコンポーネントのインデックス |
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 |