~ubuntu-branches/ubuntu/karmic/muse/karmic-proposed

« back to all changes in this revision

Viewing changes to synti/stklib/FM4Alg4.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-w8yplzr81a759xa3
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
    virtual ~FM4Alg4();
 
27
    MY_FLOAT tick();
 
28
};
 
29
 
 
30
#endif