CSharp examples for System:Math Geometry
Cos
using System.Globalization; using System.Collections.Generic; using System;/* w ww . j a v a2 s .c om*/ public class Main{ static double Cos(double degrees) { return Math.Cos(degrees * Math.PI / 180); } }