Skip to content

Instantly share code, notes, and snippets.

@lmccart
Created May 7, 2014 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lmccart/8a2fa5ad81edcf3344e2 to your computer and use it in GitHub Desktop.
Save lmccart/8a2fa5ad81edcf3344e2 to your computer and use it in GitHub Desktop.
p5 size() test
var c;
function setup() {
c = createCanvas(800, 600);
console.log(width, height);
}
function draw() {
background(95, 65, 26);
};
function mousePressed() {
c.size(width-10, height-10);
console.log(width, height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment