home *** CD-ROM | disk | FTP | other *** search
/ PC Musician 2000 / PC_Musician_2000.iso / PCMUSIC / NOTATION / SILENCE / JETTABL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-08  |  593 b   |  23 lines

  1. /**********************************************/
  2. /* Jet Table Object by Perry R. Cook, 1995-96 */
  3. /* Consult Fletcher and Rossing, Karjalainen, */
  4. /*       Cook, more, for information.         */
  5. /* This, as with many other of my "tables",   */
  6. /* is not a table, but is computed by poly-   */
  7. /* nomial calculation.                        */
  8. /**********************************************/
  9.  
  10. #include "Object.h"
  11.  
  12. class JetTabl : public Object
  13. {
  14.   protected:  
  15.     MY_FLOAT lastOutput;
  16.   public:
  17.     JetTabl();
  18.     ~JetTabl();
  19.     MY_FLOAT lookup(MY_FLOAT deltaP);
  20.     MY_FLOAT lastOut();
  21. };
  22.  
  23.