Skip to content

Commit 2982ba1

Browse files
author
James Bradbury
authored
change interp to interpolation in nmfmorph class (#115)
1 parent 9c5e9d2 commit 2982ba1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

release-packaging/Classes/FluidNMFMorph.sc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FluidNMFMorph : FluidRTUGen {
22

3-
*ar { arg source = -1, target = -1, activations = -1, autoassign = 1, interp = 0, windowSize = 1024, hopSize = -1, fftSize = -1, maxFFTSize = -1;
3+
*ar { arg source = -1, target = -1, activations = -1, autoassign = 1, interpolation = 0, windowSize = 1024, hopSize = -1, fftSize = -1, maxFFTSize = -1;
44

55
source = source ?? {-1};
66
target = target ?? {-1};
77
activations = activations ?? {-1};
88

9-
^this.new1('audio', source, target, activations, autoassign, interp, windowSize, hopSize, fftSize, maxFFTSize);
9+
^this.new1('audio', source, target, activations, autoassign, interpolation, windowSize, hopSize, fftSize, maxFFTSize);
1010
}
1111

1212
init {arg ...theInputs;

0 commit comments

Comments
 (0)