10 lines
207 B
C#
10 lines
207 B
C#
|
namespace MoonTools.Core.Structs
|
||
|
{
|
||
|
public static class MathHelper
|
||
|
{
|
||
|
public static double ToRadians(double angle)
|
||
|
{
|
||
|
return (System.Math.PI / 180) * angle;
|
||
|
}
|
||
|
}
|
||
|
}
|