Add another test for stroke bounds

This commit is contained in:
adroitwhiz 2020-06-14 02:41:55 -04:00
parent 0298f540a9
commit db895b9eab

View file

@ -798,3 +798,19 @@ test('#1561 item._globalMatrix on item after empty symbol', function(){
view.update();
equals(item._globalMatrix, new Matrix());
});
test('path.strokeBounds applies stroke padding properly (#1824)', function() {
var ellipse = new Path.Ellipse({
point: [100, 100],
size: [50, 80],
strokeWidth: 32,
strokeColor: 'red'
});
ellipse.rotate(50);
equals(
ellipse.strokeBounds,
new Rectangle(74.39306, 91.93799, 101.21388, 96.12403),
'ellipse.strokeBounds'
);
})