BoundsBase<T extends Point<num>> constructor

const BoundsBase<T extends Point<num>>({
  1. required T min,
  2. required T max,
})

Create bounds with required (and non-empty) min and max points.

Implementation

const BoundsBase({required T min, required T max})
    : _min = min,
      _max = max;