Queries values from the grid that are within the provided distance from the query location.

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

Syntax

C#
public List<SpatialGrid3D<(Of <(<'T>)>)>..::..SpatialValue<T>> Query(
	Point3D location,
	double distance
)
Visual Basic
Public Function Query ( _
	location As Point3D, _
	distance As Double _
) As List(Of SpatialGrid3D<(Of <(<'T>)>)>..::..SpatialValue(Of T))
JScript
public function Query(
	location : Point3D, 
	distance : double
) : List<SpatialGrid3D<(Of <(<'T>)>)>..::..SpatialValue<T>>

Parameters

location
Type: System.Windows.Media.Media3D..::..Point3D
The center of the query area.
distance
Type: System..::..Double
Radius of the query area.

Return Value

Returns all values that are no further than "distance" away from the "location".

See Also