CADability dotNET
Returns all objects that interfere or are close to the provided box and accepted by the filter.

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

Syntax

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

Parameters

box
Type: CADability..::..BoundingCube
Box specifying the selection
filter
Type: CADability..::..OctTree<(Of <(<'T>)>)>..::..Filter
Filter restriction the result

Return Value

Array of all objects which match the criterion

See Also