CSharp examples for System:Math Geometry
Atan
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); } }