CSharp examples for System:Math Geometry
Degree to Rad
using System.Collections.Generic; using System;//ww w . j a va 2 s.co m public class Main{ static double Degree2Rad(double value) { return value * Math.PI / 180.0; } }