5 lines
145 B
C#
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;
|
|
} |