AABB constructor

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

Implementation

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