11 lines
279 B
C#
11 lines
279 B
C#
using System;
|
|
|
|
namespace Passer.LinearAlgebra {
|
|
|
|
public class Angle {
|
|
public const float pi = 3.1415927410125732421875F;
|
|
public static float Rad2Deg = 360.0f / ((float)Math.PI * 2);
|
|
public static float Deg2Rad = ((float)Math.PI * 2) / 360.0f;
|
|
}
|
|
|
|
} |