From: anthony Date: Wed, 15 Sep 2010 12:06:44 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~8918 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f21ee69365306707d28ebb70f284c4f804fd46eb;p=imagemagick --- diff --git a/magick/resize.c b/magick/resize.c index 1c4d95b0d..59dcf726b 100644 --- a/magick/resize.c +++ b/magick/resize.c @@ -234,8 +234,8 @@ static MagickRealType Gaussian(const MagickRealType x, 1D Gaussian with sigma=1/2 exp(-2 x^2)/sqrt(pi/2)) */ - const MagickRealType alpha = (MagickRealType) (2.0/MagickSQ2PI); - return(exp(-(double)(2.0*x*x))*alpha); + /*const MagickRealType alpha = (MagickRealType) (2.0/MagickSQ2PI);*/ + return(exp(-(double)(2.0*x*x))); } static MagickRealType Hanning(const MagickRealType x,