refactor: DebuggerDisplays For Basic Types

This commit is contained in:
2024-01-27 00:51:34 +03:00
parent b14d10db0c
commit 7b47703ba0
13 changed files with 13 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ using Syntriax.Engine.Core;
namespace Syntriax.Engine.Physics2D.Primitives;
[System.Diagnostics.DebuggerDisplay("LowerBoundary: {LowerBoundary.ToString(), nq}, UpperBoundary: {UpperBoundary.ToString(), nq}")]
public readonly struct AABB(Vector2D LowerBoundary, Vector2D UpperBoundary)
{
public readonly Vector2D LowerBoundary { get; init; } = LowerBoundary;