指定された 1D コンポーネントの指定の距離内にある 0D 隣接物(Geometry1D.Neighborhood0D を参照)のインデックスの Array(Integer)を戻します。指定された距離内にある指定された 1D コンポーネントの指定されたセーフ配列です。
パラメータ | タイプ | 説明 | ||||||
---|---|---|---|---|---|---|---|---|
compIdx / compIdxArray | Variant |
コンポーネントのインデックス/コンポーネントインデックスの Array
|
||||||
distance | Integer | 考慮に入れる距離 |
set oCube = Application.ActiveProject.ActiveScene.Root.AddGeometry("Cube", "MeshSurface") set oGeometry = oCube.obj set o1DGeometry = oGeometry.Geometry1D 'Get the array of indices from that item set oSubComponent = getvalue(oCube.FullName & ".edge[6]") aIndices = oSubComponent.SubElements a0DNeighbors = o1DGeometry.Neighbors0D( aIndices, 1 ) for j = LBound( a0DNeighbors, 1 ) to UBound( a0DNeighbors, 1 ) LogMessage "Component [" & j & "] 0D neighbor : " & a0DNeighbors(j) next |