setSpinSample() public method

public setSpinSample ( int frame, int channel, double sample ) : void
frame int
channel int
sample double
return void
コード例 #1
0
 /**
  * Set a sample in Csound's input buffer
  */
 public void setInputSample(int pos, int channel, double sample)
 {
     csound.setSpinSample(pos, channel, sample);
 }
コード例 #2
0
 /**
  * Set a sample in Csound's input buffer
  */
 public void setSample(int frame, int channel, double sample)
 {
     csound.setSpinSample(frame, channel, sample);
 }