Subversion Repositories DIN Is Noise

Rev

Rev 2097 | Rev 2266 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2097 Rev 2164
Line 84... Line 84...
84
void multiply (float* out, float* mul, int n); // multiply n muls with n outs; store in out
84
void multiply (float* out, float* mul, int n); // multiply n muls with n outs; store in out
85
void multiply (float* out, int n, float d); // multiply n outs with d; store in out
85
void multiply (float* out, int n, float d); // multiply n outs with d; store in out
86
void fill (float* buf, float s, float e, int n); // fill buf with values interpolated from s to e
86
void fill (float* buf, float s, float e, int n); // fill buf with values interpolated from s to e
87
void tween (float* buf1, float* buf2, int n, float amount); // interpolate buf2 -> buf1 by amount; store in buf1
87
void tween (float* buf1, float* buf2, int n, float amount); // interpolate buf2 -> buf1 by amount; store in buf1
88
void tween (float* buf1, float* buf2, int n, float* pamount); // interpolate buf2 -> buf1 by amount array; store in buf1
88
void tween (float* buf1, float* buf2, int n, float* pamount); // interpolate buf2 -> buf1 by amount array; store in buf1
-
 
89
void toggle (int& t, const char** sa); // toggle t and print state mesg
89
90
90
#endif
91
#endif