Blame view

node_modules/stylus/lib/functions/tan.js 565 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  var utils = require('../utils')
    , nodes = require('../nodes');
  
  /**
   * Return the tangent of the given `angle`.
   *
   * @param {Unit} angle
   * @return {Unit}
   * @api public
   */
  
  module.exports = function tan(angle) {
    utils.assertType(angle, 'unit', 'angle');
  
    var radians = angle.val;
  
    if (angle.type === 'deg') {
      radians *= Math.PI / 180;
    }
  
    var m = Math.pow(10, 9);
  
    var sin = Math.round(Math.sin(radians) * m) / m
      , cos = Math.round(Math.cos(radians) * m) / m
      , tan = Math.round(m * sin / cos ) / m;
  
    return new nodes.Unit(tan, '');
  };