Obb2 constructor

Obb2({
  1. required Vector2 center,
  2. required double width,
  3. required double height,
  4. required double rotation,
})

Implementation

Obb2({
  required this.center,
  required this.width,
  required this.height,
  required this.rotation,
});