1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use ;
use crateQ15;
/// Euclidean Rhythm Instrument.
///
/// `events` pulses distributed evenly over `steps` positions
/// (Bjorklund / Toussaint), rotated by `rotation`. Each pulse
/// triggers the wrapped instrument `instr`.
///
/// # Humanisation
///
/// At playback time each pulse can be nudged earlier by up to
/// `humanize_advance_max_ticks` ticks, with probability
/// `humanize_probability` (Q1.15 in `[0, 1]`). Defaults are
/// `humanize_advance_max_ticks = 0` and `humanize_probability =
/// Q15::ZERO`, i.e. no humanisation — cycle-exact strict.
///
/// The model is asymmetric: advance only, no delay. Forward groove
/// is the typical aesthetic for tracker / electronic music; a
/// retard-based variant, if ever needed, would be a separate
/// parameter.