Geometry1D.Neighbors1D

Description

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.

Parameters

Parameter Type Description
compIdx / compIdxArray Variant Index of the component or Array of component indices

Possible Values:

Description:

0 <= compIdx < Number of 1D Component The compIdx must be valid
0 <= compIdxArray[i] < Nb of 1D Component The compIdxArray[i] must be valid
siNeighborType siNeighborType Type of neighboring

Possible Values:

Description:

siAdjacent / siGrow Select the adjacent or grown neighbors. Currently, siAdjacent and siGrow mode return the exact same indices.
distance Integer Distance to take into account

Examples

VBScript Example

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

See Also

Geometry1D.Neighborhood1D Geometry1D.Neighbors0D Geometry1D.Neighbors2D Geometry0D SIVector3