-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Closed
Labels
Description
Most appropriate sub-area of p5.js?
- Accessibility (Web Accessibility)
- Build tools and processes
- Color
- Core/Environment/Rendering
- Data
- DOM
- Events
- Friendly error system
- Image
- IO (Input/Output)
- Localization
- Math
- Unit Testing
- Typography
- Utilities
- WebGL
- Other (specify if possible)
Details about the bug:
Hello! I'm in the process of translating a subset of the p5.js reference to Python here and am collecting minor edits as I go along. Here is an example from frameRate
:
rectX = rectX += 1; // Move Rectangle
should probably be
rectX = rectX + 1; // Move Rectangle
Most of the edits fix minor typos and grammatical errors. I'm through the DOM section and have edited the following docs:
- frameCount
- frameRate
- fill
- stroke
- ellipse
- circle
- quad
- rect
- rectMode
- beginShape
- endShape
- DEGREES
- noLoop
- looping
- p5.Element
- createSlider
- createCheckbox
- createSelect
- createRadio
- createColorPicker
I still have a day or two of work ahead of me and would love to contribute something back once finished.
Would it be helpful for me to edit the inline documentation and open a pull request? If so, is there a way to do so that won't make people's eyes glaze over?
montoyamoraga