示例#1
0
 public Voice()
 {
     AmpEnv  = new VoiceEnvelope();
     ModEnv  = new VoiceEnvelope();
     LowPass = new VoiceLowPass();
     ModLfo  = new VoiceLfo();
     VibLfo  = new VoiceLfo();
 }
示例#2
0
 public VoiceLowPass(VoiceLowPass other)
 {
     QInv   = other.QInv;
     A0     = other.A0;
     A1     = other.A1;
     B1     = other.B1;
     B2     = other.B2;
     Z1     = other.Z1;
     Z2     = other.Z2;
     Active = other.Active;
 }