2000-02-26 11:41:06 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpmath.h
|
1999-09-02 04:31:56 +08:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-09-02 04:31:56 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
1999-12-26 15:54:39 +08:00
|
|
|
* Lesser General Public License for more details.
|
1999-09-02 04:31:56 +08:00
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1999-09-02 04:31:56 +08:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2001-01-24 07:56:18 +08:00
|
|
|
#ifndef __GIMP_MATH_H__
|
|
|
|
#define __GIMP_MATH_H__
|
1999-09-02 04:31:56 +08:00
|
|
|
|
|
|
|
#include <math.h>
|
2001-06-20 18:59:57 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_IEEEFP_H
|
|
|
|
#include <ieeefp.h>
|
|
|
|
#endif
|
1999-09-02 04:31:56 +08:00
|
|
|
|
2000-04-11 04:47:04 +08:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
#include <float.h>
|
|
|
|
#endif
|
|
|
|
|
2001-01-24 07:56:18 +08:00
|
|
|
#include <libgimpmath/gimpmathtypes.h>
|
|
|
|
|
|
|
|
#include <libgimpmath/gimpmatrix.h>
|
|
|
|
#include <libgimpmath/gimpvector.h>
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
2000-05-31 07:38:46 +08:00
|
|
|
|
1999-09-02 04:31:56 +08:00
|
|
|
/* Some portability enhancing stuff. For use both by the gimp app
|
|
|
|
* as well as plug-ins and modules.
|
|
|
|
*
|
|
|
|
* Include this instead of just <math.h>.
|
|
|
|
*/
|
|
|
|
|
2000-01-26 01:46:56 +08:00
|
|
|
#ifndef RAND_MAX
|
|
|
|
#define G_MAXRAND G_MAXINT
|
|
|
|
#else
|
|
|
|
#define G_MAXRAND RAND_MAX
|
|
|
|
#endif
|
|
|
|
|
1999-09-02 04:31:56 +08:00
|
|
|
/* Use RINT() instead of rint() */
|
|
|
|
#ifdef HAVE_RINT
|
|
|
|
#define RINT(x) rint(x)
|
|
|
|
#else
|
|
|
|
#define RINT(x) floor ((x) + 0.5)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ROUND(x) ((int) ((x) + 0.5))
|
|
|
|
|
|
|
|
/* Square */
|
|
|
|
#define SQR(x) ((x) * (x))
|
|
|
|
|
|
|
|
/* limit a (0->511) int to 255 */
|
|
|
|
#define MAX255(a) ((a) | (((a) & 256) - (((a) & 256) >> 8)))
|
|
|
|
|
|
|
|
/* clamp a >>int32<<-range int between 0 and 255 inclusive */
|
|
|
|
/* broken! -> #define CLAMP0255(a) ((a & 0xFFFFFF00)? (~(a>>31)) : a) */
|
|
|
|
#define CLAMP0255(a) CLAMP(a,0,255)
|
|
|
|
|
2000-02-15 00:29:41 +08:00
|
|
|
#define gimp_deg_to_rad(angle) ((angle) * (2.0 * G_PI) / 360.0)
|
|
|
|
#define gimp_rad_to_deg(angle) ((angle) * 360.0 / (2.0 * G_PI))
|
|
|
|
|
2001-06-20 18:59:57 +08:00
|
|
|
#ifdef HAVE_FINITE
|
|
|
|
#define FINITE(x) finite(x)
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_ISFINITE
|
|
|
|
#define FINITE(x) isfinite(x)
|
|
|
|
#else
|
2000-04-11 04:47:04 +08:00
|
|
|
#ifdef G_OS_WIN32
|
2000-04-11 17:37:25 +08:00
|
|
|
#define FINITE(x) _finite(x)
|
2000-05-02 07:17:38 +08:00
|
|
|
#else
|
|
|
|
#ifdef __EMX__
|
2000-04-30 21:37:28 +08:00
|
|
|
#define FINITE(x) isfinite(x)
|
2001-06-20 18:59:57 +08:00
|
|
|
#endif /* __EMX__ */
|
|
|
|
#endif /* G_OS_WIN32 */
|
|
|
|
#endif /* HAVE_ISFINITE */
|
|
|
|
#endif /* HAVE_FINITE */
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
|
|
|
|
G_END_DECLS
|
1999-09-02 04:31:56 +08:00
|
|
|
|
2001-01-24 07:56:18 +08:00
|
|
|
#endif /* __GIMP_MATH_H__ */
|