chuck icon indicating copy to clipboard operation
chuck copied to clipboard

ChucK Music Programming Language

Results 149 chuck issues
Sort by recently updated
recently updated
newest added

This should fix issue #195. I also spotted a malloc without a corresponding free on pink_array

``` CNoise cn => dac; "pink" => cn.mode 1::second => now; ``` produces audio that crackles due to clipping

A simple extension of Std.getenv with an additional **default_value** string parameter. ``` Std.getenv("USER", "headless") => string whoami; Std.getenv("CLIENT_IP", "127.0.0.1") => string client_ip; ``` It can help differentiate between unset environment...

I've patterned these after the common C macros, and included a test. Having the capability to print/record the current line number and source code file is really useful when running...

Added documentation for vector objects: vec3 and vec4

This adds a new statement, "select". Before this addition it was not possible to, say, chuck multiple events to `now` and resume on the first event signalled, or to implement...

added example that shows how to work with SndBuf and stereo files (examples/stereo). in the example is shown how to access samples, how .samples() behaves and how to set the...

Hi, I was wondering if we could add some info about how .samples() and .valueAt() work in the sndbuf.ck example. More info can be found here: https://lists.cs.princeton.edu/pipermail/chuck-users/2021-June/008961.html Cheers, Mario