processing-website icon indicating copy to clipboard operation
processing-website copied to clipboard

Repository for processing.org

Results 140 processing-website issues
Sort by recently updated
recently updated
newest added

### Issue description Indicate the direction that the vector will be rotated in, in order to avoid any ambiguity. ### URL(s) of affected page(s) https://processing.org/reference/PVector_rotate_.html ### Proposed fix Rotates a...

### Issue description The alphamask example https://processing.org/examples/alphamask.html has a P5.js preview over the code. When the Processing example is loaded from the Processing editor - the sketch doesn't behave the...

``` float angle; void setup() { size(400, 400, P3D); noStroke(); } void draw() { background(0); pointLight(200, 200, 200, width/2, height/2, -200); translate(width/2, height/2); rotateY(angle); beginShape(QUADS); normal(0, 0, 1); fill(50, 50,...

### Issue description nf() function reference could use a better description. As of now the text says: > Utility function for formatting numbers into strings. There are two versions: one...

## Description 1. The reference for [Serial.write](https://processing.org/reference/libraries/serial/Serial_write_.html) implies that you can have one or more parameters of type byte[], String or int. As far as I can see it accepts...

An item to add to the documentation: the page for [image()](https://processing.org/reference/image_.html) does not mention that there is another version of this function that takes nine inputs, where the last four...

The following examples still need to be ported to JavaScript: - [ ] [Shape/Scale Shape](https://processing.org/examples/scaleshape.html) - [ ] [Shape/Shape Vertices](https://processing.org/examples/shapevertices.html) However, since there is currently no support for SVGs in...

Examples

The list comes from the [`processing-contributions`](https://github.com/processing/processing-contributions/tree/master/sources) repo. Notes from @runemadsen : * There's a `npm run updateContributions` script that needs to be run in the processing-website repo while the processing-contributions...

**Current behavior** Mouse clicks register in interactive sketches even when the cursor is not over the sketch window (like clicking on links anywhere in the page). This is particularly problematic...

Examples
Enhancement
Help Wanted

As mentioned in https://github.com/processing/processing-website/issues/314, some livesketch examples might require the use of third party libraries to emulate features of Processing that currently do not exist in p5.js The suggested approach...

Examples
Enhancement