Hello,
I'm using Jitter to animate led strips. I was investigating the use of jit.world instead of jit.gl.render and can't seem to do what I want to do.
I currently use a jit.window with a size of 40x1 which corresponds to the number of leds on my strip. I use jit.gl.asyncread to readback as a matrix and then send it to the led strip via the serial object. By setting the windows to 40x1 I get a nice 40x1 matrix from jit.gl.asyncread which is a 1:1 mapping with my input matrix.
With jit.world whenever I try to set the y dimension to 1 the window seems to default to something bigger (50x28)
Would there be a way to achieve this with jit.world ? This would be handy as I could just use output_matrix instead of jit.gl.asyncread to send the data to my leds.
Thanks !