axiosengine 

axiosengine Git Source Tree


Root/axios/Engine/Extensions/Double.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace Axios.Engine.Extensions
{
    public static class AxiosExtension_Double
    {
        public static double DegreeToRadian(this double angle)
        {
            return Math.PI * angle / 180.0;
        }
 
        public static double RadianToDegree(double angle)
        {
            return angle * (180.0 / Math.PI);
        }
    }
}

Archive Download this file

Branches

Number of commits:
Page rendered in 0.20547s using 11 queries.