Looks for an object at the exact position in the octree. If there are more objects at the same position, the first one is returned.

Namespace: Ico.Windows.Media.Media3D
Assembly: Ico3DControlsLibrary (in Ico3DControlsLibrary.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public T Get(
	Point3D position,
	double tolerance
)
Visual Basic
Public Function Get ( _
	position As Point3D, _
	tolerance As Double _
) As T
JScript
public function Get(
	position : Point3D, 
	tolerance : double
) : T

Parameters

position
Type: System.Windows.Media.Media3D..::..Point3D
Input position.
tolerance
Type: System..::..Double
Tolerance (points closer than its value will be considered equal).

Return Value

Object at the given position, or default/null if there isn't any.

See Also