Kenneth Lim

Results 443 comments of Kenneth Lim

Hi, if you need help with your own code, please direct your questions to the [forum](https://discourse.processing.org). We use GitHub issues mainly for bug reports and feature requests only. Thanks!

If credentials are sent with the request, the responding server cannot reply with a header of `Access-Control-Allow-Origin: *` which will cause problem with using cross origin requested images. One thing...

`_setProperty` is used so properly handle both global mode and instance mode, ie. in instance mode we can just set the property value on the instance object but in global...

I'll reopen this issue as I think with the p5 editor problem (I also had that in class just last week) it is worth reinvestigating this again. It would be...

There are some existing work done towards this end awhile ago: https://github.com/processing/p5.js/blob/main/tasks/build/combineModules.js However it's not being used regularly and I'm not sure if it still works.

`random2D()` uses `fromAngle()` behind the scenes so this issue exist in `fromAngle()` as well (rather the problem came from it). There's a bit of extra functionality in `createVector` which is...

I found this issue from long ago #1879 where the lack of support for scientific notation was noted. The `nf` series of functions had been the source of many problems...

I first thought this is a window resize problem but it still behaves weird when I pop the inspector window out on its own. It is also exclusive to Chrome...

I'll need to do some more tests, I'll report back if I find any insights.

It is pretty much an issue of framerate and event loop not matching. Specifically, [`_updateNextMouseCoords`](https://github.com/processing/p5.js/blob/27d9299568088f38a7570551ad66c67086cf4908/src/events/mouse.js#L432) is called by the event handler while [`_updateMouseCoords`](https://github.com/processing/p5.js/blob/27d9299568088f38a7570551ad66c67086cf4908/src/events/mouse.js#L454) is called every frame and such there...