Returns an Array of indices (Integer) of the 1D neighborhood of a given 1D component within a given distance (see Geometry1D.Neighborhood1D) ->a given safe array of given 1D components within a given distance.
Parameter | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
compIdx / compIdxArray | Variant |
Index of the component or Array of component indices
|
||||||
siNeighborType | siNeighborType |
Type of neighboring
|
||||||
distance | Integer | Distance to take into account |
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 a1DNeighbors = o1DGeometry.Neighbors1D( aIndices, siAdjacent, 1 ) for j = LBound( a1DNeighbors, 1 ) to UBound( a1DNeighbors, 1 ) LogMessage "Component [" & j & "] 1D neighbor : " & a1DNeighbors(j) next |