2025-01-06 10:35:00 +01:00

7 lines
160 B
C#

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