Acos - CSharp System

CSharp examples for System:Math Geometry

Description

Acos

Demo Code


using System.Globalization;
using System.Collections.Generic;
using System;//  w w  w  .  j a v a 2s. c  o m

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

Related Tutorials