wrap static method

double wrap(
  1. double n,
  2. double min,
  3. double max
)

Wraps n into the inclusive-exclusive interval [min, max).

Implementation

static double wrap(double n, double min, double max) =>
    (n >= min && n < max) ? n : (mod(n - min, max - min) + min);