gimp r28013 - in trunk: . app/core



Author: neo
Date: Wed Feb 11 18:52:14 2009
New Revision: 28013
URL: http://svn.gnome.org/viewvc/gimp?rev=28013&view=rev

Log:
2009-02-11  Sven Neumann  <sven gimp org>

	* app/core/gimpcoords-interpolate.c
	(gimp_coords_interpolate_catmull): applied patch from Alexia 
Death
	that fixes a bug that was introduced by the last commit.



Modified:
   trunk/ChangeLog
   trunk/app/core/gimpcoords-interpolate.c

Modified: trunk/app/core/gimpcoords-interpolate.c
==============================================================================
--- trunk/app/core/gimpcoords-interpolate.c	(original)
+++ trunk/app/core/gimpcoords-interpolate.c	Wed Feb 11 18:52:14 2009
@@ -325,7 +325,7 @@
         {
           res_coords.direction = atan ((- delta_y) / delta_x) / (2 * G_PI);
 
-          if (delta_x > 0.0)
+          if (delta_x < 0.0)
             res_coords.direction = res_coords.direction + 0.5;
         }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]