1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
// Math header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
//
|
2020-03-11 16:38:02 +03:00
|
|
|
// Copyright 1998-2020 by Bill Spitzak and others.
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
//
|
2020-03-11 16:38:02 +03:00
|
|
|
// https://www.fltk.org/COPYING.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2005-04-16 04:13:17 +04:00
|
|
|
//
|
2020-07-01 19:03:10 +03:00
|
|
|
// https://www.fltk.org/bugs.php
|
1998-10-20 01:39:29 +04:00
|
|
|
//
|
|
|
|
|
2020-03-11 16:38:02 +03:00
|
|
|
// Xcode on macOS includes files by recursing down into directories.
|
2010-04-15 00:17:44 +04:00
|
|
|
// This code catches the cycle and directly includes the required file.
|
2020-07-01 19:03:10 +03:00
|
|
|
#ifdef fl_math_h_cyclic_include
|
2010-04-15 00:17:44 +04:00
|
|
|
# include "/usr/include/math.h"
|
|
|
|
#endif
|
|
|
|
|
1999-04-07 18:22:21 +04:00
|
|
|
#ifndef fl_math_h
|
2002-06-28 00:52:44 +04:00
|
|
|
# define fl_math_h
|
1999-04-07 18:22:21 +04:00
|
|
|
|
2020-07-01 19:03:10 +03:00
|
|
|
# define fl_math_h_cyclic_include
|
2010-03-29 15:07:29 +04:00
|
|
|
# include <math.h>
|
2020-07-01 19:03:10 +03:00
|
|
|
# undef fl_math_h_cyclic_include
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-07-17 19:23:58 +04:00
|
|
|
# ifndef M_PI
|
2002-07-17 10:09:26 +04:00
|
|
|
# define M_PI 3.14159265358979323846
|
|
|
|
# define M_PI_2 1.57079632679489661923
|
|
|
|
# define M_PI_4 0.78539816339744830962
|
|
|
|
# define M_1_PI 0.31830988618379067154
|
|
|
|
# define M_2_PI 0.63661977236758134308
|
2002-07-17 19:23:58 +04:00
|
|
|
# endif // !M_PI
|
2002-07-17 10:09:26 +04:00
|
|
|
|
2002-07-17 19:23:58 +04:00
|
|
|
# ifndef M_SQRT2
|
2002-06-28 00:52:44 +04:00
|
|
|
# define M_SQRT2 1.41421356237309504880
|
|
|
|
# define M_SQRT1_2 0.70710678118654752440
|
2002-07-17 19:23:58 +04:00
|
|
|
# endif // !M_SQRT2
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2020-03-11 16:38:02 +03:00
|
|
|
# if (defined(_WIN32) || defined(CRAY)) && !defined(__MINGW32__)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
inline double rint(double v) {return floor(v+.5);}
|
|
|
|
inline double copysign(double a, double b) {return b<0 ? -a : a;}
|
|
|
|
|
2020-03-11 16:38:02 +03:00
|
|
|
# endif // (_WIN32 || CRAY) && !__MINGW32__
|
2002-06-28 00:52:44 +04:00
|
|
|
|
|
|
|
#endif // !fl_math_h
|