Returns an Array of indices (Integers) of the 2D neighborhood of a given 0D component within a given distance (see Geometry0D.Neighborhood2D) ->a given safe array of given 0D components within a given distance.
Parameter | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
compIdx / compIdxArray | Variant |
Index of the component or Array of component indices
|
||||||
distance | Integer | Distance to take into account |
set oCube = Application.ActiveProject.ActiveScene.Root.AddGeometry("Cube", "MeshSurface") set oGeometry = oCube.obj set o0DGeometry = oGeometry.Geometry0D 'Get the array of indices from that item set oSubComponent = getvalue(oCube.FullName & ".pnt[6]") aIndices = oSubComponent.SubElements a2DNeighbors = o0DGeometry.Neighbors2D( aIndices, 1 ) for j = LBound( a2DNeighbors, 1 ) to UBound( a2DNeighbors, 1 ) LogMessage "Component [" & j & "] 2D neighbor : " & a2DNeighbors(j) next |