Fix matrix transform bug in Rectangle
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user