Degrees To Radians - CSharp System

CSharp examples for System:Math Geometry

Description

Degrees To Radians

Demo Code


using System.Windows.Media.Media3D;
using System.Windows;
using System.ComponentModel;
using System;/*from  w  ww. jav  a 2  s  .c om*/

public class Main{
        protected static double DegreesToRadians(double degrees)
        {
            return degrees * _PI_over_180;
        }
}

Related Tutorials