processing-website
processing-website copied to clipboard
Repository for processing.org
In its current state, the dropdown menu on the navigation bar is prone to flickering, and it is sometimes hard to click the button you want to hit. If your...
## Problem Statement The Processing download page does not currently update automatically when a new version is released. As a result, the website must be updated manually through [a multi-step...
Processing 4 added new core functions to replace the surface methods as can be seen in the [Beta 5](https://github.com/processing/processing4/releases/tag/processing-1280-4.0b5) and [Beta 7](https://github.com/processing/processing4/releases/tag/processing-1282-4.0b7) release notes. These changes are also mentioned here...
there is a error in the reference see https://processing.org/reference/mousePressed.html it has the text of the function mousePressed(), but it should be the text for the variable mousePressed The code example...
The [documentation](https://processing.org/tutorials/gettingstarted) tells Linux users to unpack the archive in their _/home_ directory and install Processing in that location. While this works (and is shorter), it might be preferable to...
As mentioned in https://github.com/processing/processing-website/issues/213, we need to make the `reference.zip` file smaller so people with low connection speeds can download it fairly fast. Here's what I wrote in the parent...
The footer of the [processing website](https://processing.org/) contains social media links to Twitter, Medium, Instagram, and GitHub. On being clicked, these do not open in a new tab. This might be...
The [environment page](https://processing.org/environment) contains some grammatical mistakes. Here are a few: Incorrect subject verb agreement - 'includes' can be changed to 'include'  Incorrect noun form - 'menus' can be...
### mistake in comments line 8 ``` import processing.sound.*; SawOsc saw; void setup() { size(640, 360); background(255); **// Create square wave oscillator.** saw = new SawOsc(this); saw.play(); } void draw()...
### Issue description The docs reads: "Calculates a color between two colors at a specific increment. " The word "increment" normally means "an amount to be added", but in this...