cs-quad-tree 1.0.1

dotnet add package cs-quad-tree --version 1.0.1
NuGet\Install-Package cs-quad-tree -Version 1.0.1
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="cs-quad-tree" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add cs-quad-tree --version 1.0.1
#r "nuget: cs-quad-tree, 1.0.1"
#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 cs-quad-tree as a Cake Addin
#addin nuget:?package=cs-quad-tree&version=1.0.1

// Install cs-quad-tree as a Cake Tool
#tool nuget:?package=cs-quad-tree&version=1.0.1

cs-quad-tree

QuadTree Implementation

Install

Run the follow nuget command to install:

Install-Package cs-quad-tree 

Usage

The sample code below shows how to use the quad-tree:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

namespace QuadTreeLib
{
    class Program
    {
        static void Main(string[] args)
        {
            Random random = new Random();
            QuadTree world = new QuadTree(new Rectangle(0, 0, 2000, 2000));
            
            List<IAgent> population = new List<IAgent>();
            for(int i=0; i < 10000; ++i)
            {
                IAgent agent = new SimpleAgent(world);
                float y = 0; // vertical position
                float x = random.Next(2000);
                float z = random.Next(2000);
                agent.Position = new FVec3(x, y, z);
                population.Add(agent);
            }

            for(int steps = 0; steps < 20; ++steps)
            {
                List<IAgent> agentsWithinRectangle = world.Query(new Rectangle(200, 200, 800, 800));
                Thread.Sleep(100);

                Console.WriteLine("There are {0} agents in rectangel (200, 200, 800, 800) at step {1}",
                    agentsWithinRectangle.Count, steps + 1);

                foreach (IAgent agent in population)
                {
                    float y = 0; // vertical position
                    float x = random.Next(2000);
                    float z = random.Next(2000);
                    agent.Position = new FVec3(x, y, z);
                }
            }
            
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 1,255 4/29/2018

QuadTree in .NET 4.6.1