⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reedtable.h

📁 Mobile STK for Symbian OS V0.1
💻 H
字号:
/***************************************************//*! \class ReedTable    \brief STK reed table class.    This class implements a simple one breakpoint,    non-linear reed function, as described by    Smith (1986).  This function is based on a    memoryless non-linear spring model of the reed    (the reed mass is ignored) which saturates when    the reed collides with the mouthpiece facing.    See McIntyre, Schumacher, & Woodhouse (1983),    Smith (1986), Hirschman, Cook, Scavone, and    others for more information.    by Perry R. Cook and Gary P. Scavone, 1995 - 2005.*//***************************************************/#ifndef STK_REEDTABLE_H#define STK_REEDTABLE_H#include "Function.h"class ReedTable : public Function{public:  //! Default constructor.  ReedTable();  //! Class destructor.  ~ReedTable();  //! Set the table offset value.  /*!    The table offset roughly corresponds to the size    of the initial reed tip opening (a greater offset    represents a smaller opening).  */  void setOffset(StkFloat offset);  //! Set the table slope value.  /*!   The table slope roughly corresponds to the reed   stiffness (a greater slope represents a harder   reed).  */  void setSlope(StkFloat slope);protected:  StkFloat computeSample( StkFloat input );  StkFloat offset_;  StkFloat slope_;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -