mirror of
https://github.com/thestk/stk
synced 2026-01-19 07:31:52 +00:00
Version 3.2
This commit is contained in:
committed by
Stephen Sinclair
parent
4b6500d3de
commit
3f126af4e5
22
include/Rhodey.h
Normal file
22
include/Rhodey.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/******************************************/
|
||||
/* Fender Rhodes Electric Piano Subclass */
|
||||
/* of Algorithm 5 (TX81Z) Subclass of */
|
||||
/* 4 Operator FM Synth */
|
||||
/* by Perry R. Cook, 1995-96 */
|
||||
/******************************************/
|
||||
|
||||
#if !defined(__Rhodey_h)
|
||||
#define __Rhodey_h
|
||||
|
||||
#include "FM4Alg5.h"
|
||||
|
||||
class Rhodey : public FM4Alg5
|
||||
{
|
||||
public:
|
||||
Rhodey();
|
||||
~Rhodey();
|
||||
virtual void setFreq(MY_FLOAT frequency);
|
||||
virtual void noteOn(MY_FLOAT freq, MY_FLOAT amp);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user