Degree To Radian - CSharp System

CSharp examples for System:Math Geometry

Description

Degree To Radian

Demo Code


using System.Collections;
using System.Text;
using System.Linq;
using System.Collections.Generic;
using System;//from   w  w w.  j  a va  2  s  . co  m

public class Main{

        private static double DegreeToRadian(double angle)
        {
            return Math.PI * angle / 180.0;
        }
}

Related Tutorials