Skip to content

Instantly share code, notes, and snippets.

@lmccart
Created October 15, 2015 21:54
Show Gist options
  • Save lmccart/c16394071f31c154b565 to your computer and use it in GitHub Desktop.
Save lmccart/c16394071f31c154b565 to your computer and use it in GitHub Desktop.
var img;
function preload() {
img = loadImage('cat.jpg');
}
function setup() {
createCanvas(600, 400);
copy(img, 0, 0, 50, 50, 50, 50, 50, 50);
copy(img, 50, 50, 50, 50, 150, 150, 50, 50);
//image(img, 200, 200)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment