Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial


Noise.h

00001 /***************************************************/
00011 /***************************************************/
00012 
00013 #if !defined(__NOISE_H)
00014 #define __NOISE_H
00015 
00016 #include "Stk.h"
00017 
00018 class Noise : public Stk
00019 {
00020 public:
00021 
00023   Noise();
00024 
00026   virtual ~Noise();
00027 
00029   virtual MY_FLOAT tick();
00030 
00032   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
00033 
00035   MY_FLOAT lastOut() const;
00036 
00037 protected:  
00038 
00039   MY_FLOAT lastOutput;
00040 
00041 };
00042 
00043 #endif

The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.