This commit is contained in:
Scott Williams 2017-02-03 17:09:29 +00:00
Родитель 503c950db3
Коммит 74f68afba9
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -260,10 +260,10 @@ namespace SixLabors.Shapes.Tests
{
Rectangle shape = new Rectangle(0, 0, 200, 60);
var newShape = (Rectangle)shape.Transform(new Matrix3x2(0, 1, 1, 0, 20, 2));
Assert.Equal(new Vector2(20, 2), newShape.Location);
Assert.Equal(new Size(60, 200), newShape.Size);
var newShape = shape.Transform(new Matrix3x2(0, 1, 1, 0, 20, 2));
Assert.Equal(new Vector2(20, 2), newShape.Bounds.Location);
Assert.Equal(new Size(60, 200), newShape.Bounds.Size);
}
}
}