mirror of
https://github.com/thestk/stk
synced 2026-01-12 20:41:52 +00:00
Version 4.2.1
This commit is contained in:
committed by
Stephen Sinclair
parent
a6381b9d38
commit
2cbce2d8bd
@@ -53,7 +53,7 @@
|
||||
/***************************************************/
|
||||
|
||||
#include "Stk.h"
|
||||
#include <math.h>
|
||||
#include <cmath>
|
||||
|
||||
int my_random(int max) // Return Random Int Between 0 and max
|
||||
{
|
||||
@@ -816,7 +816,7 @@ void Shakers :: noteOff(StkFloat amplitude)
|
||||
|
||||
const StkFloat MIN_ENERGY = 0.3;
|
||||
|
||||
StkFloat Shakers :: tick()
|
||||
StkFloat Shakers :: computeSample()
|
||||
{
|
||||
StkFloat data;
|
||||
StkFloat temp_rand;
|
||||
@@ -887,16 +887,6 @@ StkFloat Shakers :: tick()
|
||||
return lastOutput_;
|
||||
}
|
||||
|
||||
StkFloat *Shakers :: tick(StkFloat *vector, unsigned int vectorSize)
|
||||
{
|
||||
return Instrmnt::tick( vector, vectorSize );
|
||||
}
|
||||
|
||||
StkFrames& Shakers :: tick( StkFrames& frames, unsigned int channel )
|
||||
{
|
||||
return Instrmnt::tick( frames, channel );
|
||||
}
|
||||
|
||||
void Shakers :: controlChange(int number, StkFloat value)
|
||||
{
|
||||
StkFloat norm = value * ONE_OVER_128;
|
||||
|
||||
Reference in New Issue
Block a user