Sin - CSharp System

CSharp examples for System:Math Geometry

Description

Sin

Demo Code


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); }
}

Related Tutorials