diff --git a/Nuclex.Support (PC).csproj b/Nuclex.Support (PC).csproj index d7bbfeb..60cf710 100644 --- a/Nuclex.Support (PC).csproj +++ b/Nuclex.Support (PC).csproj @@ -25,7 +25,7 @@ true false x86 - Documentation\Nuclex.Support.xml + Documents\Nuclex.Support.xml pdbonly @@ -37,7 +37,7 @@ true false x86 - Documentation\Nuclex.Support.xml + Documents\Nuclex.Support.xml @@ -294,6 +294,9 @@ Nuclex.Support + + + diff --git a/Source/SpatialPartitioning/BoundingRectangle.cs b/Source/SpatialPartitioning/BoundingRectangle.cs index b10d29a..1c1167f 100644 --- a/Source/SpatialPartitioning/BoundingRectangle.cs +++ b/Source/SpatialPartitioning/BoundingRectangle.cs @@ -35,7 +35,7 @@ namespace Nuclex.Support.SpatialPartitioning { this.Min = min; this.Max = max; } - + /// /// Builds the smallest bounding rectangle that contains the two /// specified bounding rectangle. @@ -50,7 +50,7 @@ namespace Nuclex.Support.SpatialPartitioning { CreateMerged(ref original, ref additional, out result); return result; } - + /// /// Builds the smallest bounding rectangle that contains the two /// specified bounding rectangle. @@ -66,7 +66,6 @@ namespace Nuclex.Support.SpatialPartitioning { result.Min = Vector2.Min(original.Min, additional.Min); result.Max = Vector2.Max(original.Max, additional.Max); } - /// Coordinates of the lesser side of the bounding rectangle public Vector2 Min;