We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Signature: void Buffer::fill(std::string waveform, int frequency = 0)
void Buffer::fill(std::string waveform, int frequency = 0)
e.g.: buf.fill("sine", 440) fills the buffer with a 440Hz sine wave.
buf.fill("sine", 440)
Waveforms should include at least sine, triangle, saw, square, whitenoise, pinknoise.
sine
triangle
saw
square
whitenoise
pinknoise
If frequency is zero, fills the buffer with a single cycle of the waveform.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Signature:
void Buffer::fill(std::string waveform, int frequency = 0)
e.g.:
buf.fill("sine", 440)
fills the buffer with a 440Hz sine wave.Waveforms should include at least
sine
,triangle
,saw
,square
,whitenoise
,pinknoise
.If frequency is zero, fills the buffer with a single cycle of the waveform.
The text was updated successfully, but these errors were encountered: