Dave Pagurek

Results 708 comments of Dave Pagurek

looks like `p5` is not imported in this file where it's used https://github.com/processing/p5.js/blob/dev-2.0/src%2Fdom%2Fp5.MediaElement.js#L789

Hi @MarcusCheecham! The docs on the website here get automatically generated based on the doc comments in the p5.js repo. Could you make your pull request there? For any item...

I guess the fully backwards compatible option would be to keep `createVector()` dimensionless and have it take on the shape of whatever it's operated upon with first? Potentially that could...

If we do something for https://github.com/processing/p5.js/issues/8159 to allow 3D vectors with z=0 to be used with 2D vectors, then that solution works! For completeness of that other idea though, I...

Hi! This will affect *all* h2s, probably breaking the layout in tutorials that include it. The tutorials page has a similar look and addresses it by adding the following tailwind...

I'm not sure I'm on board yet for making class methods use a separate pattern for getters/setters, or at least that that's the right spot to make the switch. Mostly,...

> This is really interesting because my understanding was that the pattern I'm proposing isn't a switch away from precedent, but rather a move towards it. I think it definitely...

I think it's possible to keep the array access API for vectors if we make the dimension not be independent state, but something calculated from the values array, making the...

+1 for allowing more overloads in `createVector`. I think `.copy()` maybe has enough of a separate use that it doesn't need to be deprecated though. Because vectors can't use regular...