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