home *** CD-ROM | disk | FTP | other *** search
/ PC Musician 2000 / PC_Musician_2000.iso / PCMUSIC / NOTATION / SILENCE / FM4ALG4.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-08  |  833 b   |  30 lines

  1. /******************************************/
  2. /*  Algorithm 4 (TX81Z) Subclass of       */ 
  3. /*  4 Operator FM Synth                   */
  4. /*  by Perry R. Cook, 1995-96             */ 
  5. /*                                        */
  6. /*  Alg 4 is :      4->3--\               */
  7. /*                     2-- + -->1-->Out   */
  8. /*                                        */
  9. /*  Controls: control1 = total mod index  */
  10. /*            control2 = crossfade of two */
  11. /*                          modulators    */
  12. /*            control3 = LFO speed        */
  13. /*            modWheel = LFO amount       */
  14. /*                                        */
  15. /******************************************/
  16.  
  17. #if !defined(__FM4Alg4_h)
  18. #define __FM4Alg4_h
  19.  
  20. #include "FM4Op.h"
  21.  
  22. class FM4Alg4 : public FM4Op
  23. {
  24.   public:
  25.     FM4Alg4();
  26.     MY_FLOAT tick();
  27. };
  28.  
  29. #endif
  30.