Home  |  Delphi .net Home  |  System.Math  |  Sin Method
Sin  
Method  
Gets the Sine of an angle
Math Class
System NameSpace
CF1.  Function Sin ( Angle : Double; ) : Double; Static;
CF : Methods with this mark are Compact Framework Compatible
Description
Returns the Sine (Sin) value of the Angle radians value.
 
PI Radians = 180 degrees
Notes
Static methods are not methods of an object - they are simply class functions or procedures available at any time.
Microsoft MSDN Links
System
System.Math
 
 
A simple example
program Project1;
{$APPTYPE CONSOLE}

var
  float : Double;
begin
  float := System.Math.Sin(PI/6);   // = 180/6 = 30 degrees

  Console.WriteLine('Sin(PI/6) = {0}', float.ToString);

  Console.ReadLine;
end.
Show full unit code
  Sin(PI/6) = 0.5
 
 
Delphi Programming © Neil Moffatt All rights reserved.  |  Contact the author