setC method

WaveC setC(
  1. WaveC o
)

Implementation

WaveC setC(WaveC o) {
  frameCount = o.frameCount;
  sampleRate = o.sampleRate;
  sampleSize = o.sampleSize;
  channels = o.channels;
  data = o.data;
  return this;
}