Fix CircleShape::visual_bounding_rect() (#1575)

This commit is contained in:
carrotflakes 2022-05-05 16:16:00 +09:00 committed by GitHub
parent 1dd014cbed
commit cb2298e98b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -331,7 +331,7 @@ impl CircleShape {
} else {
Rect::from_center_size(
self.center,
Vec2::splat(self.radius + self.stroke.width / 2.0),
Vec2::splat(self.radius * 2.0 + self.stroke.width),
)
}
}