Returns an Array of indices (Integers) of the 1D neighborhood of a given 0D component within a given distance.
| Parameter | Type | Description | ||||
|---|---|---|---|---|---|---|
| compIdx | Integer | Index of the component
|
||||
| distance | Integer | Distance to take into account |
'Create a cube
CreatePrim "Cube", "MeshSurface"
set oSelList = GetValue("SelectionList")
set oItem = oSelList(0)
set oGeometry = oItem.obj
oNb0D = oGeometry.Nb0D
set o0DGeometry = oGeometry.Geometry0D
' Loop on all the 0D Component
for i = 0 to oNb0D - 1
o1DNeighborhood = o0DGeometry.Neighborhood1D( i, 1 )
for j = LBound( o1DNeighborhood, 1 ) to UBound( o1DNeighborhood, 1 )
LogMessage "Component [" & i & "] 1D neighbor : " & o1DNeighborhood(j)
next
next
|