processing-docs
processing-docs copied to clipboard
[Deprecated] Processing reference, examples, tutorials, and website
### Issue description The settings made by rectMode() affects how square() and text() interprets their arguments. Therefore both square() and text() ought to be mentioned as related to rectMode(). ###...
You might not believe it: Today is the first day that I have read about processing. So I looked up the homepage. Lot's of information but nowhere I could find...
### Issue description The documentation of `+=` states the syntax is: `value1 += value2 ` I suggest changing this to: `identifier += expression ` or perhaps `variablename += expression `...
### Issue description The documentation of scale says: "For example, the function call scale(2.0) increases the dimension of a shape by 200%." This is unfortunately a mistake. Let's say the...
### Issue description The reference has the following to say on `+=` : > Combines addition with assignment. The expression `a+=b` is equivalent to `a=a+b`. The biggest problem is that...
### Issue description The mode parameter of arc is not explained on the reference page on arc. ### URL(s) of affected page(s) https://processing.org/reference/arc_.html ### Proposed fix Add `mode` to the...
### Issue description The link over at "It is developed by a **team of volunteers**", which can be seen on every page's footer, 404s. ### URL(s) of affected page(s) Every...
### Issue description A [processing.org/reference/saveFrame_.html](https://processing.org/reference/saveFrame_.html) statement seems incorrect: ```txt // Saves each frame as screen-0001.tif, screen-0002.tif, etc. saveFrame(); ``` ### URL(s) of affected page(s) [processing.org/reference/saveFrame_.html](https://processing.org/reference/saveFrame_.html) ### Proposed fix Update [processing/processing-website/content/references/examples/processing/saveFrame_/saveFrame_0.pde](https://github.com/processing/processing-website/blob/149362954b596a8821097b7faabe5ea9d16c9fff/content/references/examples/processing/saveFrame_/saveFrame_0.pde#L11)...
### Issue description The docs for `triangle` says: "A triangle is a plane created by connecting three points. " This is confusing since a plane is infinite. How about changing...
### Issue description The description has the following sentence: "The origin of the arc's ellipse may be changed with the ellipseMode() function. " This should be: "The center of the...