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