BoundingBoxForce constructor

BoundingBoxForce({
  1. required double minX,
  2. required double minY,
  3. required double maxX,
  4. required double maxY,
  5. double bounce = 0.5,
})

Implementation

BoundingBoxForce({
  required this.minX,
  required this.minY,
  required this.maxX,
  required this.maxY,
  this.bounce = 0.5,
});