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

@@ -5,7 +5,7 @@
This class implements a simple bowed string
non-linear function, as described by Smith (1986).
by Perry R. Cook and Gary P. Scavone, 1995 - 2004.
by Perry R. Cook and Gary P. Scavone, 1995 - 2005.
*/
/***************************************************/
@@ -32,7 +32,7 @@ void BowTable :: setSlope(StkFloat slope)
slope_ = slope;
}
StkFloat BowTable :: tick(StkFloat input)
StkFloat BowTable :: computeSample(StkFloat input)
{
// The input represents differential string vs. bow velocity.
StkFloat sample;
@@ -49,12 +49,3 @@ StkFloat BowTable :: tick(StkFloat input)
return lastOutput_;
}
StkFloat *BowTable :: tick(StkFloat *vector, unsigned int vectorSize)
{
return Function::tick( vector, vectorSize );
}
StkFrames& BowTable :: tick( StkFrames& frames, unsigned int channel )
{
return Function::tick( frames, channel );
}