Neighbors0D (Geometry1D)

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:

0 <= compIdx < Number of 1D Component: The compIdx must be valid

0 <= compIdxArray[i] < Nb of 1D Component: 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

 

 

 



Autodesk Softimage v7.5