ManyBodyForce constructor

ManyBodyForce({
  1. double strength = -30,
  2. double theta = 0.9,
  3. double distanceMin = 1,
  4. double distanceMax = double.infinity,
})

Implementation

ManyBodyForce({
  this.strength = -30,
  this.theta = 0.9,
  this.distanceMin = 1,
  this.distanceMax = double.infinity,
});