Absolute Sin - CSharp System

CSharp examples for System:Math Geometry

Description

Absolute Sin

Demo Code


using System;/*from   w ww  . j ava2 s.  co  m*/

public class Main{
        public static double AbsoluteSin(double angle)
        {
            return Math.Abs(Math.Sin(angle));
        }
}

Related Tutorials