boundingBox property
override
The smallest axis-aligned rectangle that completely encloses the shape.
Implementation
@override
Rectangle get boundingBox => Rectangle(
width: semiMajorAxis * 2,
height: semiMinorAxis * 2,
center: _center
);