Tan - CSharp System

CSharp examples for System:Math Geometry

Description

Tan

Demo Code


using System.Globalization;
using System.Collections.Generic;
using System;/*from  www.j av a  2  s.c  o  m*/

public class Main{
        static double Tan(double degrees) { return Math.Tan(degrees * Math.PI / 180); }
}

Related Tutorials