AABB constructor

AABB(
  1. Vec2 position, {
  2. required double width,
  3. required double height,
})

Implementation

AABB(
  super.position, {
  required this.width,
  required this.height,
});