Atan - CSharp System

CSharp examples for System:Math Geometry

Description

Atan

Demo Code


using System.Globalization;
using System.Collections.Generic;
using System;/*  w w  w  .  jav  a2 s .com*/

public class Main{
        static double Atan(double number) { return Math.Atan(number) / (Math.PI / 180); }
}

Related Tutorials