Rename file BoundingBox to BoundingBox2 and remove dedicated namespace for it

This commit is contained in:
2025-08-27 17:57:04 +02:00
parent 07dc369c2c
commit 235178be3d
4 changed files with 4 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
using System.Numerics;
namespace BoundingBox
namespace Quadtree
{
public enum IntersectionType { Contains, Intersects, Disjoint }
+1 -2
View File
@@ -1,5 +1,4 @@
using BoundingBox;
using System.Numerics;
using System.Numerics;
namespace Quadtree
{
+1 -3
View File
@@ -1,6 +1,4 @@
using BoundingBox;
using System.Collections.Generic;
using System.Numerics;
using System.Numerics;
namespace Quadtree
{
+1 -3
View File
@@ -1,6 +1,4 @@
using BoundingBox;
namespace Quadtree
namespace Quadtree
{
internal struct QuadtreeQuery
{