Fix package dependency problem
All checks were successful
Publish NuGet Packages / publish (push) Successful in 1m47s

This commit is contained in:
2025-11-04 20:48:25 +09:00
parent 308c70d0e1
commit b914716225
29 changed files with 179 additions and 197 deletions

View File

@@ -1,4 +1,4 @@
using System.Runtime.CompilerServices;
using System.Runtime.CompilerServices;
namespace Misaki.HighPerformance.Mathematics.Geometry;
@@ -98,12 +98,12 @@ public struct SphereBounds : IEquatable<SphereBounds>
}
}
public readonly override string ToString()
public override readonly string ToString()
{
return $"Center: {Center}, Radius: {Radius}";
}
public readonly override int GetHashCode()
public override readonly int GetHashCode()
{
return HashCode.Combine(Center, Radius);
}