Click or drag to resize

ScenePickRectangular Method

Executes a pick in the given rectangular region and returns a depth sorted collection of picked objects. The coordinate origin is top, left. To pick screen overlays, use the PickScreenOverlays(Int32, Int32) method.

Namespace:  AGI.Foundation.Graphics
Assembly:  AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public Collection<PickResult> PickRectangular(
	int left,
	int bottom,
	int right,
	int top
)

Parameters

left
Type: SystemInt32
The left x coordinate of the rectangle in the Insight3D control.
bottom
Type: SystemInt32
The bottom y coordinate of the rectangle in the Insight3D control.
right
Type: SystemInt32
The right x coordinate of the rectangle in the Insight3D control.
top
Type: SystemInt32
The top y coordinate of the rectangle in the Insight3D control.

Return Value

Type: CollectionPickResult
A collection of depth sorted PickResults
See Also