Version 4.2.1

This commit is contained in:
Gary Scavone
2009-03-24 23:02:14 -04:00
committed by Stephen Sinclair
parent a6381b9d38
commit 2cbce2d8bd
275 changed files with 8949 additions and 6906 deletions

View File

@@ -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 );
}