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
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
(c) 2000-2009 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
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#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);
|
|
|
|
double deg(double x);
|
|
|
|
double rad(double x);
|
|
|
|
double fix(double x);
|
|
|
|
double frexp10(double x, int *exp);
|
|
|
|
double ang(double x, double y);
|
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
|
|
|
|
2008-03-21 02:25:37 +01:00
|
|
|
#if defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_CYGWIN)
|
2008-01-17 22:39:26 +01:00
|
|
|
double exp10(double x);
|
2008-03-21 02:25:37 +01:00
|
|
|
#ifdef log2
|
|
|
|
#undef log2
|
|
|
|
#endif
|
2008-01-17 22:39:26 +01:00
|
|
|
double log2(double x);
|
|
|
|
double exp2(double x);
|
2009-12-24 03:02:05 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_CYGWIN) || defined(ARCH_ARM)
|
2008-01-17 22:39:26 +01:00
|
|
|
long double log10l(long double x);
|
|
|
|
long double fabsl(long double x);
|
|
|
|
long double powl(long double x, long double y);
|
2008-03-21 02:25:37 +01:00
|
|
|
long double modfl(long double x, long double *p);
|
|
|
|
#endif
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
#endif
|