CSharp examples for System:Math Geometry
Degree To Radian
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; } }