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.
27 lines
743 B
Python
27 lines
743 B
Python
FluidStandardize : FluidManipulationClient {
|
|
|
|
fit{|dataset, action|
|
|
this.pr_sendMsg(\fit,[dataset.asUGenInput],action);
|
|
}
|
|
|
|
standardize{|sourceDataset, destDataset, action|
|
|
this.pr_sendMsg(\standardize,[sourceDataset.asUGenInput, destDataset.asUGenInput],action);
|
|
}
|
|
|
|
standardizePoint{|sourceBuffer, destBuffer, action|
|
|
this.pr_sendMsg(\standardizePoint,[sourceBuffer.asUGenInput, destBuffer.asUGenInput],action);
|
|
}
|
|
|
|
cols {|action|
|
|
this.pr_sendMsg(\cols,[],action,[numbers(FluidMessageResponse,_,1,_)]);
|
|
}
|
|
|
|
read{|filename,action|
|
|
this.pr_sendMsg(\read,[filename],action);
|
|
}
|
|
|
|
write{|filename,action|
|
|
this.pr_sendMsg(\write,[filename],action);
|
|
}
|
|
|
|
} |