You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
642 B
Python
28 lines
642 B
Python
FluidStandardize : FluidRTDataClient {
|
|
*new {|server, invert = 0|
|
|
^super.new1(server,[\invert, invert]);
|
|
}
|
|
|
|
fit{|dataSet, action|
|
|
this.prSendMsg(\fit, [dataSet.asSymbol], action);
|
|
}
|
|
|
|
transform{|sourceDataSet, destDataSet, action|
|
|
this.prSendMsg(\transform,
|
|
[sourceDataSet.asSymbol, destDataSet.asSymbol], action
|
|
);
|
|
}
|
|
|
|
fitTransform{|sourceDataSet, destDataSet, action|
|
|
this.prSendMsg(\fitTransform,
|
|
[sourceDataSet.asSymbol, destDataSet.asSymbol], action
|
|
);
|
|
}
|
|
|
|
transformPoint{|sourceBuffer, destBuffer, action|
|
|
this.prSendMsg(\transformPoint,
|
|
[sourceBuffer.asUGenInput, destBuffer.asUGenInput], action
|
|
);
|
|
}
|
|
}
|