Rectangle.fromCenter constructor

Rectangle.fromCenter({
  1. required Vector2 center,
  2. required double width,
  3. required double height,
})

Constructs a rectangle from its center point, width, and height.

The center argument is assumed to be an offset from the origin.

Implementation

Rectangle.fromCenter(
    {required vm.Vector2 center,
    required double width,
    required double height})
    : this.fromLTRB(
        center.x - width / 2,
        center.y - height / 2,
        center.x + width / 2,
        center.y + height / 2,
      );