sin/cos/tan


sin(n)
cos(n) 
tan(n) 
      

Return the sine, cosine or tangent of the number n. The argument is specified in radians.

Examples:


sin(0.0)
// 0.
cos(0.0)
// 1.
tan(0.0)
// 0.
      

Also see:

asin


Core Module Index | Contents