AABB.fromLTWH constructor

AABB.fromLTWH(
  1. double l,
  2. double t,
  3. double w,
  4. double h,
)

Implementation

AABB.fromLTWH(double l, double t, double w, double h)
    : this.fromValues(l, t, l + w, t + h);