mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-05 15:55:54 +00:00
7 lines
167 B
C#
7 lines
167 B
C#
|
|
namespace GTweensGodot.Extensions;
|
|||
|
|
|
|||
|
|
public static class MathExtensions
|
|||
|
|
{
|
|||
|
|
public const float Deg2Rad = 0.01745329f;
|
|||
|
|
public const float Rad2Deg = 57.29578f;
|
|||
|
|
}
|