mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
Removed undefined clear() functions in FM, Resonate, Simple, and Sampler classes; a few documentation updates in preparation for 4.5.0 release.
This commit is contained in:
@@ -46,9 +46,6 @@ class FM : public Instrmnt
|
||||
//! Class destructor.
|
||||
virtual ~FM( void );
|
||||
|
||||
//! Reset and clear all wave and envelope states.
|
||||
void clear( void );
|
||||
|
||||
//! Load the rawwave filenames in waves.
|
||||
void loadWaves( const char **filenames );
|
||||
|
||||
|
||||
@@ -36,9 +36,6 @@ class Resonate : public Instrmnt
|
||||
//! Class destructor.
|
||||
~Resonate( void );
|
||||
|
||||
//! Reset and clear all internal state.
|
||||
void clear( void );
|
||||
|
||||
//! Set the filter for a resonance at the given frequency (Hz) and radius.
|
||||
void setResonance( StkFloat frequency, StkFloat radius );
|
||||
|
||||
|
||||
@@ -28,9 +28,6 @@ class Sampler : public Instrmnt
|
||||
//! Class destructor.
|
||||
virtual ~Sampler( void );
|
||||
|
||||
//! Reset and clear all internal state.
|
||||
void clear( void );
|
||||
|
||||
//! Set instrument parameters for a particular frequency.
|
||||
virtual void setFrequency( StkFloat frequency ) = 0;
|
||||
|
||||
|
||||
@@ -41,9 +41,6 @@ class Simple : public Instrmnt
|
||||
//! Class destructor.
|
||||
~Simple( void );
|
||||
|
||||
//! Clear internal states.
|
||||
void clear( void );
|
||||
|
||||
//! Set instrument parameters for a particular frequency.
|
||||
void setFrequency( StkFloat frequency );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user