Info
Version: | 3.0.1 |
Author(s): | Matthias Buchetics, Alexander Pacha and others, see CONTRIBUTORS.md |
Last Update: | Thursday, April 29, 2021 |
.NET Fiddle: | Online Example |
Project Url: | https://github.com/mbuchetics/RangeTree |
NuGet Url: | https://www.nuget.org/packages/RangeTree |
Install
Install-Package RangeTree
dotnet add package RangeTree
paket add RangeTree
RangeTree Download (Unzip the "nupkg" after downloading)
Dependencies
.NETFramework 4.5
No dependencies.
No dependencies.
- NETStandard.Library(>= 1.6.1)
Tags
In computer science, an interval tree is an ordered tree data structure to hold intervals. Specifically, it allows one to efficiently find all intervals that overlap with any given interval or point.
It is often used for windowing queries, for instance, to find all roads on a computerized map inside a rectangular viewport, or to find all visible elements inside a three-dimensional scene.