Tonnes.QuadTreeF
1.0.4
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Tonnes.QuadTreeF --version 1.0.4
NuGet\Install-Package Tonnes.QuadTreeF -Version 1.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Tonnes.QuadTreeF" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tonnes.QuadTreeF --version 1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Tonnes.QuadTreeF, 1.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Tonnes.QuadTreeF as a Cake Addin #addin nuget:?package=Tonnes.QuadTreeF&version=1.0.4 // Install Tonnes.QuadTreeF as a Cake Tool #tool nuget:?package=Tonnes.QuadTreeF&version=1.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
QuadTreeF
A generic QuadTree implementation where all nodes are stored in the leafs of the tree, and rectangles plus points are stored as floats.
MonoGame
Extensions for MonoGame can be found here
Usage example
public void Examples() {
// Create a new tree
RectangleF bounds = new RectangleF(0, 0, 10, 10);
QuadTree<int> tree = new QuadTree<int>(bounds);
// Add a node to the tree
tree.Add(0f, 1f, 100);
tree.Add(new QuadNode<int>(0f, 1f, 100));
// Remove a node from the tree
tree.Remove(1f, 0f);
tree.Remove(new PointF(1f, 0));
// Try to get a node from a tree. Will return null if no node is found
QuadNode<int> node = tree.Search(0f, 1f);
QuadNode<int> node2 = tree.Search(new PointF(0f, 1f));
// Check if the tree contains a node at a point
bool containsNode = tree.Contains(0f, 1f);
bool containsNode2 = tree.Contains(new PointF(0f, 1f));
// Clear all nodes (+ branches and leafs) from tree
tree.Clear();
// Check equality of two trees
bool equals = tree.Equals(tree2);
}
Compatibility
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 is compatible. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net5.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Tonnes.QuadTreeF:
Package | Downloads |
---|---|
Tonnes.QuadTreeF.MonoGame
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.