Degree to Rad - CSharp System

CSharp examples for System:Math Geometry

Description

Degree to Rad

Demo Code


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;
        }
}

Related Tutorials