tan.js 258 B

12345678
  1. export var tanDocs = {
  2. name: 'tan',
  3. category: 'Trigonometry',
  4. syntax: ['tan(x)'],
  5. description: 'Compute the tangent of x in radians.',
  6. examples: ['tan(0.5)', 'sin(0.5) / cos(0.5)', 'tan(pi / 4)', 'tan(45 deg)'],
  7. seealso: ['atan', 'sin', 'cos']
  8. };