Absolute Cos - CSharp System

CSharp examples for System:Math Geometry

Description

Absolute Cos

Demo Code


using System;/*from  www .  ja  v  a  2  s  .  c om*/

public class Main{
        public static double AbsoluteCos(double angle)
        {
            return Math.Abs(Math.Cos(angle));
        }
}

Related Tutorials