CADability dotNET
Returns all nodes of this tree that interfere with the provided box and pass the filter test.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public OctTree<(Of <(<'T>)>)>..::..Node<T>[] GetNodesFromBox(
	BoundingCube box,
	OctTree<(Of <(<'T>)>)>..::..FilterNode filter
)
Visual Basic
Public Function GetNodesFromBox ( _
	box As BoundingCube, _
	filter As OctTree<(Of <(<'T>)>)>..::..FilterNode _
) As OctTree<(Of <(<'T>)>)>..::..Node(Of T)()
Visual C++
public:
array<OctTree<(Of <(<'T>)>)>..::..Node<T>^>^ GetNodesFromBox(
	BoundingCube box, 
	OctTree<(Of <(<'T>)>)>..::..FilterNode^ filter
)

Parameters

box
Type: CADability..::..BoundingCube
Restricting box
filter
Type: CADability..::..OctTree<(Of <(<'T>)>)>..::..FilterNode
Additional filter (may be null)

Return Value

All nodes which match the criterion

See Also