\2007-09-12 Sven Neumann <sven@gimp.org>

* app/core/gimp-transform-region.c (supersample_dtest): use
	G_SQRT2 instead of defining this constant again.


svn path=/trunk/; revision=23514
This commit is contained in:
Sven Neumann 2007-09-12 17:28:24 +00:00
parent 5690296310
commit e2cd1d4170
2 changed files with 13 additions and 9 deletions

View File

@ -1,3 +1,8 @@
2007-09-12 Sven Neumann <sven@gimp.org>
* app/core/gimp-transform-region.c (supersample_dtest): use
G_SQRT2 instead of defining this constant again.
2007-09-12 Michael Natterer <mitch@gimp.org>
Bring back our menus when building on OS X but not against the

View File

@ -930,16 +930,15 @@ supersample_dtest (gdouble x0, gdouble y0,
gdouble x2, gdouble y2,
gdouble x3, gdouble y3)
{
#define SQRT2 1.414213562373095
return (fabs (x0 - x1) > SQRT2 ||
fabs (x1 - x2) > SQRT2 ||
fabs (x2 - x3) > SQRT2 ||
fabs (x3 - x0) > SQRT2 ||
return (fabs (x0 - x1) > G_SQRT2 ||
fabs (x1 - x2) > G_SQRT2 ||
fabs (x2 - x3) > G_SQRT2 ||
fabs (x3 - x0) > G_SQRT2 ||
fabs (y0 - y1) > SQRT2 ||
fabs (y1 - y2) > SQRT2 ||
fabs (y2 - y3) > SQRT2 ||
fabs (y3 - y0) > SQRT2);
fabs (y0 - y1) > G_SQRT2 ||
fabs (y1 - y2) > G_SQRT2 ||
fabs (y2 - y3) > G_SQRT2 ||
fabs (y3 - y0) > G_SQRT2);
}
/*