CSharp examples for System:Math Geometry
Sin
using System.Globalization; using System.Collections.Generic; using System;/*from w w w . ja va 2s . c o m*/ public class Main{ static double Sin(double degrees) { return Math.Sin(degrees * Math.PI / 180); } }