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