applied patch from Øyvind Kolås that fixes bug #109570.

2003-03-31  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpdrawable-transform-utils.c
	(gimp_drawable_transform_matrix_perspective): applied patch from
	Øyvind Kolås that fixes bug #109570.
This commit is contained in:
Michael Natterer 2003-03-31 08:32:30 +00:00 committed by Michael Natterer
parent 174f717fd1
commit 59af012a50
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2003-03-31 Michael Natterer <mitch@gimp.org>
* app/core/gimpdrawable-transform-utils.c
(gimp_drawable_transform_matrix_perspective): applied patch from
Øyvind Kolås that fixes bug #109570.
2003-03-30 Sven Neumann <sven@gimp.org> 2003-03-30 Sven Neumann <sven@gimp.org>
* configure.in * configure.in

View File

@ -161,7 +161,7 @@ gimp_drawable_transform_matrix_perspective (gint x1,
dx2 = tx3 - tx4; dx2 = tx3 - tx4;
dx3 = tx1 - tx2 + tx4 - tx3; dx3 = tx1 - tx2 + tx4 - tx3;
dy1 = ty2 - ty3; dy1 = ty2 - ty4;
dy2 = ty3 - ty4; dy2 = ty3 - ty4;
dy3 = ty1 - ty2 + ty4 - ty3; dy3 = ty1 - ty2 + ty4 - ty3;

View File

@ -161,7 +161,7 @@ gimp_drawable_transform_matrix_perspective (gint x1,
dx2 = tx3 - tx4; dx2 = tx3 - tx4;
dx3 = tx1 - tx2 + tx4 - tx3; dx3 = tx1 - tx2 + tx4 - tx3;
dy1 = ty2 - ty3; dy1 = ty2 - ty4;
dy2 = ty3 - ty4; dy2 = ty3 - ty4;
dy3 = ty1 - ty2 + ty4 - ty3; dy3 = ty1 - ty2 + ty4 - ty3;