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