Dave Pagurek

Results 709 comments of Dave Pagurek

Sorry for the delay! I think we're all good, since we're now serving the reference in a different way than before now that it's on p5js.org.

Maybe @dhowe has some more info on what the difference between `fontWidth` and `textWidth` should be in general? `fontWidth` uses the `width` property while `textWidth` measures using `actualBoundingBoxLeft/Right`. Some possible...

It sounds like we do want space to be significant in that case? Since a single space character would still have a bounding box. So would it sound right to...

ok, I think that makes sense! In probably the references for both text and font width, we could briefly explain that one is tight and one is loose, and possibly...

Some more thoughts: If we replace the original node, then we'd likely have to rewrite statements like this: ```js // Before inputs.position.y += sin(t); // After inputs.position = inputs.position.set('y', inputs.position.y...

> Just checking to confirm: is the goal here to simplify the usage of `typeObject()` by making it the single source of truth for all type-related processing, so downstream methods...

Also, just wanted to check in again @IIITM-Jay, I think the last things to do here were to update `typeObject` to remove the need to re-parse any strings, and to...

That sounds good @Vaivaswat2244! I think if we save the actual results similar to how we save the expected results (but added to the .gitignore, since they don't need to...