fL.js 131 B

12345
  1. import {HALF_PI} from '../constants/values';
  2. export default function(x, L) {
  3. return 2 * Math.atan(x * Math.exp(L)) - HALF_PI;
  4. }