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; +}