2003-12-05 23:55:15 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2000-02-26 11:41:06 +08:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpmath.h
|
1999-09-02 04:31:56 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +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
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
1999-09-02 04:31:56 +08:00
|
|
|
*
|
|
|
|
* 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
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
1999-09-02 04:31:56 +08:00
|
|
|
*/
|
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
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
|
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
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#define __GIMP_MATH_H_INSIDE__
|
|
|
|
|
2001-01-24 07:56:18 +08:00
|
|
|
#include <libgimpmath/gimpmathtypes.h>
|
|
|
|
|
|
|
|
#include <libgimpmath/gimpmatrix.h>
|
|
|
|
#include <libgimpmath/gimpvector.h>
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#undef __GIMP_MATH_H_INSIDE__
|
|
|
|
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2010-07-02 20:41:35 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION: gimpmath
|
|
|
|
* @title: GimpMath
|
|
|
|
* @short_description: Mathematical definitions and macros.
|
1999-09-02 04:31:56 +08:00
|
|
|
*
|
2010-07-02 20:41:35 +08:00
|
|
|
* Mathematical definitions and macros for use both by the GIMP
|
|
|
|
* application and plug-ins. These macros should be used rather than
|
2010-07-02 20:48:24 +08:00
|
|
|
* the ones from <math.h> for enhanced portability.
|
2010-07-02 20:41:35 +08:00
|
|
|
**/
|
|
|
|
|
1999-09-02 04:31:56 +08:00
|
|
|
|
2010-07-02 20:41:35 +08:00
|
|
|
/**
|
|
|
|
* RINT:
|
|
|
|
* @x: the value to be rounded
|
|
|
|
*
|
|
|
|
* This macro rounds its argument @x to an integer value in floating
|
|
|
|
* point format. Use RINT() instead of rint().
|
|
|
|
**/
|
2017-10-06 05:35:10 +08:00
|
|
|
#if defined (HAVE_RINT) && 0
|
|
|
|
/* note: rint() depends on the current floating-point rounding mode. when the
|
|
|
|
* rounding mode is FE_TONEAREST, it, in parctice, breaks ties to even. this
|
|
|
|
* is different from 'floor (x + 0.5)', which breaks ties up. in other words
|
|
|
|
* 'rint (2.5) == 2.0', while 'floor (2.5 + 0.5) == 3.0'. this is asking for
|
|
|
|
* trouble, so let's just use the latter.
|
|
|
|
*/
|
1999-09-02 04:31:56 +08:00
|
|
|
#define RINT(x) rint(x)
|
|
|
|
#else
|
|
|
|
#define RINT(x) floor ((x) + 0.5)
|
|
|
|
#endif
|
|
|
|
|
2010-07-02 20:41:35 +08:00
|
|
|
/**
|
|
|
|
* ROUND:
|
|
|
|
* @x: the value to be rounded.
|
|
|
|
*
|
2013-02-13 01:36:15 +08:00
|
|
|
* This macro rounds its positive argument @x to the nearest integer.
|
2010-07-02 20:41:35 +08:00
|
|
|
**/
|
1999-09-02 04:31:56 +08:00
|
|
|
#define ROUND(x) ((int) ((x) + 0.5))
|
|
|
|
|
2013-02-13 01:36:15 +08:00
|
|
|
/**
|
|
|
|
* SIGNED_ROUND:
|
|
|
|
* @x: the value to be rounded.
|
|
|
|
*
|
|
|
|
* This macro rounds its argument @x to the nearest integer.
|
|
|
|
**/
|
Bug 788461 - Selection with a Fixed size is created with an ...
... off-by one size in special cases
SIGNED_ROUND(), which is used by GimpToolRectangle, among other
things, used to round negative values which lie exactly between
two integers, i.e., -foo.5, down. This could lead to the rectangle
being one pixel bigger than expected, in either dimension, when one
of its edges had a negative coordinate, and the opposite edge had a
positive coordinate.
Fix SIGNED_ROUND() to always round such values up, regardless of
sign.
2017-10-06 04:05:25 +08:00
|
|
|
#define SIGNED_ROUND(x) ((int) RINT (x))
|
2013-02-13 01:36:15 +08:00
|
|
|
|
2010-07-02 20:41:35 +08:00
|
|
|
/**
|
|
|
|
* SQR:
|
|
|
|
* @x: the value to be squared.
|
|
|
|
*
|
|
|
|
* This macro squares its argument @x.
|
|
|
|
**/
|
1999-09-02 04:31:56 +08:00
|
|
|
#define SQR(x) ((x) * (x))
|
|
|
|
|
2010-07-02 20:41:35 +08:00
|
|
|
/**
|
|
|
|
* MAX255:
|
|
|
|
* @a: the value to be limited.
|
|
|
|
*
|
|
|
|
* This macro limits it argument @a, an (0-511) int, to 255.
|
|
|
|
**/
|
1999-09-02 04:31:56 +08:00
|
|
|
#define MAX255(a) ((a) | (((a) & 256) - (((a) & 256) >> 8)))
|
|
|
|
|
2010-07-02 20:41:35 +08:00
|
|
|
/**
|
|
|
|
* CLAMP0255:
|
|
|
|
* @a: the value to be clamped.
|
|
|
|
*
|
|
|
|
* This macro clamps its argument @a, an int32-range int, between 0
|
|
|
|
* and 255 inclusive.
|
|
|
|
**/
|
1999-09-02 04:31:56 +08:00
|
|
|
#define CLAMP0255(a) CLAMP(a,0,255)
|
|
|
|
|
2017-11-19 20:07:20 +08:00
|
|
|
/**
|
|
|
|
* SAFE_CLAMP:
|
|
|
|
* @x: the value to be limited.
|
|
|
|
* @low: the lower limit.
|
|
|
|
* @high: the upper limit.
|
|
|
|
*
|
|
|
|
* Ensures that @x is between the limits set by @low and @high,
|
|
|
|
* even if @x is NaN. If @low is greater than @high, or if either
|
|
|
|
* of them is NaN, the result is undefined.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
**/
|
|
|
|
#define SAFE_CLAMP(x, low, high) ((x) > (low) ? (x) < (high) ? (x) : (high) : (low))
|
|
|
|
|
2010-07-02 20:41:35 +08:00
|
|
|
/**
|
|
|
|
* gimp_deg_to_rad:
|
|
|
|
* @angle: the angle to be converted.
|
|
|
|
*
|
|
|
|
* This macro converts its argument @angle from degree to radian.
|
|
|
|
**/
|
2000-02-15 00:29:41 +08:00
|
|
|
#define gimp_deg_to_rad(angle) ((angle) * (2.0 * G_PI) / 360.0)
|
2010-07-02 20:41:35 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_rad_to_deg:
|
|
|
|
* @angle: the angle to be converted.
|
|
|
|
*
|
|
|
|
* This macro converts its argument @angle from radian to degree.
|
|
|
|
**/
|
2000-02-15 00:29:41 +08:00
|
|
|
#define gimp_rad_to_deg(angle) ((angle) * 360.0 / (2.0 * G_PI))
|
|
|
|
|
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__ */
|