Geometry1D.Neighbors0D

Description

Returns an Array of indices (Integers) of the 0D neighborhood of a given 1D component within a given distance (see Geometry1D.Neighborhood0D) ->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 The compIdx must be valid
0 The compIdxArray[i] must be valid
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

a0DNeighbors = o1DGeometry.Neighbors0D( aIndices, 1 )

for j = LBound( a0DNeighbors, 1 ) to UBound( a0DNeighbors, 1 )

	LogMessage "Component [" & j & "] 0D neighbor : " & a0DNeighbors(j) 

next

See Also

Geometry1D.Neighborhood0D Geometry1D.Neighbors1D Geometry1D.Neighbors2D Geometry0D SIVector3