aabb method

AABB aabb({
  1. required double width,
  2. required double height,
})

Implementation

AABB aabb({required double width, required double height}) =>
    AABB(position, width: width * zoom, height: height * zoom);