fix the fix for echo
This commit is contained in:
parent
c801660b2a
commit
1029f8674c
1 changed files with 2 additions and 2 deletions
|
|
@ -656,7 +656,7 @@ export class Pattern {
|
|||
}
|
||||
|
||||
stutWith(times, time, func) {
|
||||
return stack(...listRange(0, times - 1).map((i) => func(this.late(i.mul(time)), i)));
|
||||
return stack(...listRange(0, times - 1).map((i) => func(this.late(Fraction(time).mul(i)), i)));
|
||||
}
|
||||
|
||||
stut(times, feedback, time) {
|
||||
|
|
@ -665,7 +665,7 @@ export class Pattern {
|
|||
|
||||
// these might change with: https://github.com/tidalcycles/Tidal/issues/902
|
||||
_echoWith(times, time, func) {
|
||||
return stack(...listRange(0, times - 1).map((i) => func(this.late(i.mul(time)), i)));
|
||||
return stack(...listRange(0, times - 1).map((i) => func(this.late(Fraction(time).mul(i)), i)));
|
||||
}
|
||||
|
||||
_echo(times, time, feedback) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue