center property

Point<double> center

This Bounds central point.

Implementation

Point<double> get center => Point<double>(
      (min.x + max.x) / 2,
      (min.y + max.y) / 2,
    );