We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve style guide to prevent future inconsistencies in docs.
In reference to #6400 (comment), as proposed by @nickmcintyre, to add guideline about chaining functions to styleguide.
// Nope. fill(0) .strokeWeight(0) .textSize(10); // Nope. fill(0).strokeWeight(0).textSize(10); // Yep. fill(0); strokeWeight(0); textSize(10);
The text was updated successfully, but these errors were encountered:
Hey @meezwhite I would like to work on this issue. Please assign it to me.
Sorry, something went wrong.
Yes I think that is fine to add, @meezwhite you can go ahead with a PR if you like.
Successfully merging a pull request may close this issue.
Increasing access
Improve style guide to prevent future inconsistencies in docs.
Most appropriate sub-area of p5.js?
Feature enhancement details
In reference to #6400 (comment), as proposed by @nickmcintyre, to add guideline about chaining functions to styleguide.
The text was updated successfully, but these errors were encountered: