Nife version Beta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

54 lines
1.5 KiB

  1. /* Copyright (C) 2011-2022 Patrick H. E. Foubet - S.E.R.I.A.N.E.
  2. This program is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or any
  5. later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program. If not, see <http://www.gnu.org/licenses/>
  12. *******************************************************************/
  13. /* libmath.h */
  14. #ifndef __NIFE_LIBMATH_H__
  15. #define __NIFE_LIBMATH_H__
  16. extern void IF_inv(void);
  17. extern void IF_sqrt(void);
  18. extern void IF_cbrt(void);
  19. extern void IF_round(void);
  20. extern void IF_floor(void);
  21. extern void IF_ceil(void);
  22. extern void IF_sgn(void);
  23. extern void IF_abs(void);
  24. extern void IF_pi(void);
  25. extern void IF_sin(void);
  26. extern void IF_cos(void);
  27. extern void IF_tan(void);
  28. extern void IF_asin(void);
  29. extern void IF_acos(void);
  30. extern void IF_atan(void);
  31. extern void IF_sinh(void);
  32. extern void IF_cosh(void);
  33. extern void IF_tanh(void);
  34. extern void IF_asinh(void);
  35. extern void IF_acosh(void);
  36. extern void IF_atanh(void);
  37. extern void IF_ln(void);
  38. extern void IF_log(void);
  39. extern void IF_exp(void);
  40. extern void IF_j0(void);
  41. extern void IF_j1(void);
  42. extern void IF_y0(void);
  43. extern void IF_y1(void);
  44. #endif