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

« back to all changes in this revision

Viewing changes to synti/stklib/Noise.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
/*  Noise Generator Class,                 */
 
3
/*  by Perry R. Cook, 1995-96              */ 
 
4
/*  White noise as often as you like.      */
 
5
/*******************************************/
 
6
 
 
7
#if !defined(__Noise_h)
 
8
#define __Noise_h
 
9
 
 
10
#include "Object.h"
 
11
 
 
12
class Noise : public Object
 
13
{
 
14
  protected:  
 
15
     MY_FLOAT lastOutput;
 
16
  public:
 
17
    Noise();
 
18
    virtual ~Noise();
 
19
    MY_FLOAT tick();
 
20
    MY_FLOAT lastOut();
 
21
};
 
22
 
 
23
#endif