Doeke Wartena

Results 62 comments of Doeke Wartena

I made a hacky terminal renderer: https://raw.githubusercontent.com/clankill3r/p5_terminal_graphics/master/data/fox.gif https://github.com/clankill3r/p5_terminal_graphics It would be nice if such thing would work too. Colors are done with ANSI, more about that here: https://en.wikipedia.org/wiki/ANSI_escape_code#CSI_codes

@DeForestt Well no one can stop you. But I have to warn you, most pull request get zero attention. So you might put in a lot of hard work for...

Related to: https://github.com/processing/processing/issues/5713 This bug does not apply in processing 4. Also, you can disable color as a primitive type in the preferences, which will fix, but now you have...

No it wont. Only for x, not for y.

I can see the red pixel. I only can' get the mouseY to 0. ``` java void setup() { size(200, 200); } void draw() { cursor(CROSS); set(0, 0, #FF0000); surface.setTitle(""+red(get(mouseX,...

I tested, 1. Only the default renderer, P3D does not has this bug. 2. ^ 3. All pixels are visible. So it seems like a bug in the default renderer.

I fixed the issue. When the mouse is reaching 0 in the y direction then the `action` is `MouseEvent.EXIT`, which is not processed by `handleMouseEvent`. I choose to also improve...

I have the same thing. It should detect 3 webcams but no webcam is detected. I don't have the ` -= `. OSX 10.15.7

Ok also invoking did not work: `" m.invoke(null);",`. I noticed that for things where the javassist compiler fails I can just wrap what I want in a method. For example...

Thank you, I never thought of that. Normally i'm not a big fan of `try catch` but in this case it will serve it's purpose fine!