mirror of
https://github.com/thestk/stk
synced 2026-01-15 05:51:52 +00:00
Version 4.2.1
This commit is contained in:
committed by
Stephen Sinclair
parent
a6381b9d38
commit
2cbce2d8bd
@@ -9,7 +9,7 @@
|
||||
Consult Fletcher and Rossing, Karjalainen,
|
||||
Cook, and others for more information.
|
||||
|
||||
by Perry R. Cook and Gary P. Scavone, 1995 - 2004.
|
||||
by Perry R. Cook and Gary P. Scavone, 1995 - 2005.
|
||||
*/
|
||||
/***************************************************/
|
||||
|
||||
@@ -23,7 +23,7 @@ JetTable :: ~JetTable()
|
||||
{
|
||||
}
|
||||
|
||||
StkFloat JetTable :: tick( StkFloat input )
|
||||
StkFloat JetTable :: computeSample( StkFloat input )
|
||||
{
|
||||
// Perform "table lookup" using a polynomial
|
||||
// calculation (x^3 - x), which approximates
|
||||
@@ -37,13 +37,3 @@ StkFloat JetTable :: tick( StkFloat input )
|
||||
lastOutput_ = (StkFloat) -1.0;
|
||||
return lastOutput_;
|
||||
}
|
||||
|
||||
StkFloat *JetTable :: tick(StkFloat *vector, unsigned int vectorSize)
|
||||
{
|
||||
return Function::tick( vector, vectorSize );
|
||||
}
|
||||
|
||||
StkFrames& JetTable :: tick( StkFrames& frames, unsigned int channel )
|
||||
{
|
||||
return Function::tick( frames, channel );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user