From c24f71c4af7a0973024c29ca4d8e85872fd4d560 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Mon, 22 Jan 2024 12:28:43 +0300 Subject: [PATCH] feat: Basic Math Class --- Game/Physics2D/Primitives/Math.cs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Game/Physics2D/Primitives/Math.cs diff --git a/Game/Physics2D/Primitives/Math.cs b/Game/Physics2D/Primitives/Math.cs new file mode 100644 index 0000000..86ae4c9 --- /dev/null +++ b/Game/Physics2D/Primitives/Math.cs @@ -0,0 +1,7 @@ +namespace Syntriax.Engine.Physics2D.Primitives; + +public static class Math +{ + public const float RadianToDegree = 57.29577866666166f; + public const float DegreeToRadian = 0.01745329277777778f; +}