#include "Noise.h" using namespace stk; int main() { StkFrames output(20, 1); // initialize StkFrames to 20 1-channel frames Noise noise; noise.tick( output ); // perform vectorized computation for ( unsigned int i=0; i<output.frames(); i++ ) { std::cout << "i = " << i << " : output = " << output[i] << std::endl; } return 0; }
![]() | ©2004-2024 McGill University. All Rights Reserved. Maintained by Gary P. Scavone. |