Rename file BoundingBox to BoundingBox2 and remove dedicated namespace for it

This commit is contained in:
Stefan Müller 2025-08-27 17:57:04 +02:00
parent 07dc369c2c
commit 235178be3d
4 changed files with 4 additions and 9 deletions

View File

@ -1,6 +1,6 @@
using System.Numerics; using System.Numerics;
namespace BoundingBox namespace Quadtree
{ {
public enum IntersectionType { Contains, Intersects, Disjoint } public enum IntersectionType { Contains, Intersects, Disjoint }

View File

@ -1,5 +1,4 @@
using BoundingBox; using System.Numerics;
using System.Numerics;
namespace Quadtree namespace Quadtree
{ {

View File

@ -1,6 +1,4 @@
using BoundingBox; using System.Numerics;
using System.Collections.Generic;
using System.Numerics;
namespace Quadtree namespace Quadtree
{ {

View File

@ -1,6 +1,4 @@
using BoundingBox; namespace Quadtree
namespace Quadtree
{ {
internal struct QuadtreeQuery internal struct QuadtreeQuery
{ {