AABB.fromValues constructor

AABB.fromValues(
  1. double l,
  2. double t,
  3. double r,
  4. double b,
)

Implementation

AABB.fromValues(double l, double t, double r, double b)
    : left = l,
      top = t,
      right = r,
      bottom = b;