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

If there's a subclass B of class A, you can instantiate an object B before its definition in a file, but you can't call any parent functions from A i.e....

bug

In ChucKDesigner, I have two virtual machines of ChucK running the same code but at different sample rates. The code: ``` Step s => ADSR adsr => dac; 1. =>...

bug

While doing tests with ChucK I found that there seems to be a limit on how often Machine.add() can be called: ``` [chuck](VM): sporking incoming shred: 8151 (loop.ck)... [chuck](VM): sporking...

I have a function that rotates an array of ints such that ``` [1,2,3,4] @=> int arr[]; rotate(arr, 1) @=> arr; // arr now equal to [2,3,4,1] ``` I do...

I have noted that in the recent version (1.4.1.*) of chuck there is this separation of the core code from the host code and that one can generate a `libchuck.a`...

I was using arrays and I wanted to remove elements, and found that it wasn't possible, so I coded it myself. I did see erase() implemented, which threw me off,...

the simplified code below fails on chuck 1.4.1.0 (Windows 10). float boolBowDirList2 [0][0]; float temp2 [0]; temp2

This PR provides Chuck with a `--pid-file ` command line option. When provided, the Chuck process writes its process ID to the specified file (and removes it upon exit). This...

I'm trying to communicate with a chuck server running on a raspberry pi from a macbook pro. I'm consistently getting getting this error. Host, Raspbian GNU/Linux 10 (buster) with a...

It would be great to support SysEx messages, especially considering a lot of hardware products use them for things like setting parameters or even data transfers.