Home Information Classes Download Usage Mail List Requirements Links FAQ Tutorial
00001 /***************************************************/ 00018 /***************************************************/ 00019 00020 #ifndef STK_REEDTABLE_H 00021 #define STK_REEDTABLE_H 00022 00023 #include "Function.h" 00024 00025 class ReedTable : public Function 00026 { 00027 public: 00029 ReedTable(); 00030 00032 ~ReedTable(); 00033 00035 00040 void setOffset(StkFloat offset); 00041 00043 00048 void setSlope(StkFloat slope); 00049 00050 protected: 00051 00052 StkFloat computeSample( StkFloat input ); 00053 00054 StkFloat offset_; 00055 StkFloat slope_; 00056 00057 }; 00058 00059 #endif
The Synthesis ToolKit in C++ (STK) |
©1995-2007 Perry R. Cook and Gary P. Scavone. All Rights Reserved. |