Finds all rectangles that intersect the passed rectangle.
Namespace:
VelocityDBExtensions.Spatial
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntax public bool Intersects(
Rectangle r,
Func<Rectangle, bool> v
)
Public Function Intersects (
r As Rectangle,
v As Func(Of Rectangle, Boolean)
) As Boolean
public:
bool Intersects(
Rectangle r,
Func<Rectangle, bool>^ v
)
member Intersects :
r : Rectangle *
v : Func<Rectangle, bool> -> bool
Parameters
- r
- Type: VelocityDBExtensions.SpatialRectangle
the rectangle we are intersecting with - v
- Type: SystemFuncRectangle, Boolean
if returns true, search containues else search is ended
Return Value
Type:
Booleantrue if at least one intersection was found and v returns true
See Also