Kevin Workman
Kevin Workman
I'm using the latest version of the p5.js editor (p5.js version 1.4.1), and I have code like this: ``` function setup() { createCanvas(400, 400); } function draw() { background(220); //...
Originally found in this Stack Overflow question: http://stackoverflow.com/questions/37671632/my-p5-js-canvas-window-continues-to-change-with-each-code-execution-how-can-i-s I see the same issue on Windows 7. If I have some simple code: ``` function setup() { createCanvas(600, 400); } function...
I have a bad habit of writing sentences like this: > Click [here] to see the p5.js tutorials! Unfortunately, these are bad for accessibility. If a screen reader user navigates...
I want to avoid using words like "simple" or phrases like "just do xyz". At best these are filler, and at worst they belittle the reader. Unfortunately, these are all...
http://HappyCoding.io/tutorials/processing/images.html http://HappyCoding.io//examples/processing/images/nes-filter
The background images are generated using pretty simple Processing code. If you're new to open source, this would be a pretty good place to jump in because each sketch is...
On pages that have a CodePen, opening a CodePen causes the back button to close the CodePen instead of going back a page. This is a minor annoyance, and might...
Talking about this code: ``` java MyClass myClass = new MyClass(); void setup() { size(100, 100); } void draw() { background(0); text(myClass.x, 50, 25); text(myClass.y, 50, 50); text(myClass.z, 50, 75);...
#### Nature of issue? - [X] Found a bug #### Most appropriate sub-area of p5.js? - [X] Color - `createGraphics()` - `set()` #### Which platform were you using when you...