refactor: primitives now use Core.Math for math

This commit is contained in:
2025-05-02 18:57:42 +03:00
parent 16e4077d40
commit 5de08b8fe4
8 changed files with 22 additions and 37 deletions

View File

@@ -1,5 +1,3 @@
using System;
namespace Syntriax.Engine.Core;
/// <summary>
@@ -316,7 +314,7 @@ public readonly struct Vector2D(float x, float y)
/// Generates a hash code for the <see cref="Vector2D"/>.
/// </summary>
/// <returns>A hash code for the <see cref="Vector2D"/>.</returns>
public override int GetHashCode() => HashCode.Combine(X, Y);
public override int GetHashCode() => System.HashCode.Combine(X, Y);
}
/// <summary>