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

  1. /******************************************/
  2. /*  Algorithm 8 (TX81Z) Subclass of       */ 
  3. /*  4 Operator FM Synth                   */
  4. /*  by Perry R. Cook, 1995-96             */ 
  5. /*  This connection topology is simple    */
  6. /*  Additive Synthesis, like:             */
  7. /*                                        */
  8. /*                   1 --.                */
  9. /*                   2 -\|                */
  10. /*                       +-> Out          */
  11. /*                   3 -/|                */
  12. /*                   4 --                 */
  13. /*                                        */
  14. /*  Controls: control1 = op4 (fb) gain    */
  15. /*            control2 = op3 gain         */
  16. /*            control3 = LFO speed        */
  17. /*            modWheel = LFO amount       */
  18. /*                                        */
  19. /******************************************/
  20.  
  21. #if !defined(__FM4Alg8_h)
  22. #define __FM4Alg8_h
  23.  
  24. #include "FM4Op.h"
  25.  
  26. class FM4Alg8 : public FM4Op
  27. {
  28.   public:
  29.     FM4Alg8();
  30.     virtual MY_FLOAT tick();
  31. };
  32.  
  33. #endif
  34.