2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gbx_math.h
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2011-03-21 01:04:10 +01:00
|
|
|
(c) 2000-2011 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __GBX_MATH_H
|
|
|
|
#define __GBX_MATH_H
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void MATH_init(void);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
int lsgn(int x);
|
|
|
|
int llsgn(int64_t x);
|
|
|
|
//int64_t llabs(int64_t x);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
double frac(double x);
|
|
|
|
int fsgn(double x);
|
2010-11-16 02:49:18 +01:00
|
|
|
float fixf(float x);
|
2008-01-17 22:39:26 +01:00
|
|
|
double fix(double x);
|
|
|
|
double frexp10(double x, int *exp);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2008-01-17 22:39:26 +01:00
|
|
|
void randomize(bool set, uint seed);
|
|
|
|
double rnd(void);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2010-06-13 22:25:34 +02:00
|
|
|
#define deg(_x) ((_x) * 180 / M_PI)
|
|
|
|
#define rad(_x) ((_x) * M_PI / 180)
|
|
|
|
|
2010-08-31 10:54:51 +02:00
|
|
|
#ifndef HAVE_EXP10
|
2008-01-17 22:39:26 +01:00
|
|
|
double exp10(double x);
|
2008-03-21 02:25:37 +01:00
|
|
|
#endif
|
2010-08-31 10:54:51 +02:00
|
|
|
|
|
|
|
#ifndef HAVE_LOG2
|
2008-01-17 22:39:26 +01:00
|
|
|
double log2(double x);
|
2010-08-31 10:54:51 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_EXP2
|
2008-01-17 22:39:26 +01:00
|
|
|
double exp2(double x);
|
2009-12-24 03:02:05 +01:00
|
|
|
#endif
|
|
|
|
|
2010-08-31 10:54:51 +02:00
|
|
|
#ifndef HAVE_LOG10L
|
2008-01-17 22:39:26 +01:00
|
|
|
long double log10l(long double x);
|
2010-08-31 10:54:51 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_FABSL
|
2008-01-17 22:39:26 +01:00
|
|
|
long double fabsl(long double x);
|
2010-08-31 10:54:51 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_POWL
|
2010-11-08 16:57:25 +01:00
|
|
|
long double powl(long double x, long double y);
|
2010-08-31 10:54:51 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_MODFL
|
2010-11-08 16:57:25 +01:00
|
|
|
long double modfl(long double x, long double *iptr);
|
2008-03-21 02:25:37 +01:00
|
|
|
#endif
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
#endif
|