From 4e43638868981e006f10777121bb06be764a7e25 Mon Sep 17 00:00:00 2001 From: Kane Wallmann Date: Thu, 21 May 2015 22:06:13 +1000 Subject: [PATCH] Fix matrix transform bug in Rectangle --- lime/math/Rectangle.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lime/math/Rectangle.hx b/lime/math/Rectangle.hx index fa0b6f3b5..d6a39485d 100644 --- a/lime/math/Rectangle.hx +++ b/lime/math/Rectangle.hx @@ -189,7 +189,7 @@ class Rectangle { var tx0 = m.a * x + m.c * y; var tx1 = tx0; var ty0 = m.b * x + m.d * y; - var ty1 = tx0; + var ty1 = ty0; var tx = m.a * (x + width) + m.c * y; var ty = m.b * (x + width) + m.d * y;