Daniel Howe
Daniel Howe
I imagine such a thing exists already, but don't see it in the examples. Want to verify before trying to implement one... Does such a thing exist?
I am interested in trying a live input with PlayGrains, rather than a sample. I am guessing this would require e a new implementation of GrainSource, something like 'InputGrainSource', that...
1. There is a file/path required which appears to be on your local system, so the example crashes, until one either a) changes useSample to false, or b) provides a...
Thanks for the good work hereI may be missing something but it seems the panels closes each time I stop the debugger. In most IDEs the debugging panel stays open...
So it would be super useful to see the actual underlying commands (without running them) in order to help debug issues. Just like `--preview` but more verbose, maybe something like...
Suggestion: make available the set of filters in p5js (currently THRESHOLD, GRAY, OPAQUE, INVERT, POSTERIZE, BLUR, ERODE, DILATE) as shaders (with the same names), so that users can more easily...
Not a critical issue, but there are massive numbers of warnings and debugging output in the bill scripts that make it difficult to tell if things are working correctly. Would...
I'm not positive that this is a bug, but it sure is confusing that the code below results in 3 very different behaviors in the browser, depending on whether devtools...
A question: let's say I have a p5-compatible library (MyLib) with an object literal in it (MyLibObj), and this object literal has a function that the user would normally call...
This PR adds PFont.[textBounds](https://p5js.org/reference/#/p5.Font/textBounds), PFont.[textToPoints](https://p5js.org/reference/#/p5.Font/textToPoints) from p5.js, and PFont.glyphBounds, as shown in the sketch below (there may be more efficient ways to do these). Also, I attempted to use the...