码迷,mamicode.com
首页 > 其他好文 > 详细

C#三角函数使用

时间:2015-09-02 12:01:42      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:

 public static double tricorn(double n, string str)
        {
            double pi = System.Math.PI;
            switch (str)
            {
                case "sin": return System.Math.Sin(n * pi / 180);
                case "cos": return System.Math.Cos(n * pi / 180);
                case "tan": return System.Math.Tan(n * pi / 180);
                case "cot": return 1.0 / System.Math.Tan(n * pi / 180);
                case "asin": return System.Math.Asin(n)*180/pi;
                case "acos": return System.Math.Acos(n))*180/pi;
                case "atan": return System.Math.Atan(n))*180/pi;
                case "acot": return System.Math.Atan(1.0 / n))*180/pi;
                default:
                    return 0;
            }
        }

C#三角函数使用

标签:

原文地址:http://my.oschina.net/ucliaohh/blog/500582

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!