fix: Vector2D Normal Debugger Display

This commit is contained in:
Syntriax 2024-01-29 12:43:52 +03:00
parent 1c7d941bc1
commit d7d53e467a
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ using System;
namespace Syntriax.Engine.Core;
[System.Diagnostics.DebuggerDisplay("{ToString(),nq}, Length: {Magnitude}, LengthSquared: {MagnitudeSquared}, Normalized: {Normalized}")]
[System.Diagnostics.DebuggerDisplay("{ToString(),nq}, Length: {Magnitude}, LengthSquared: {MagnitudeSquared}, Normalized: {Normalized.ToString(),nq}")]
public readonly struct Vector2D(float X, float Y)
{
public readonly float X { get; init; } = X;