2024-12-31 10:11:08 +01:00

5 lines
145 B
C#

class Angle
{
public static float Rad2Deg = 360.0f / ((float)Math.PI * 2);
public static float Deg2Rad = ((float)Math.PI * 2) / 360.0f;
}