Skip to content

Instantly share code, notes, and snippets.

@TaijaQ
Last active June 19, 2017 19:08
Show Gist options
  • Save TaijaQ/461b41155b2baa1ecb17 to your computer and use it in GitHub Desktop.
Save TaijaQ/461b41155b2baa1ecb17 to your computer and use it in GitHub Desktop.
Graphical tools and ideas for visual Javascript
// Learning Processing
// Daniel Shiffman
// http://www.learningprocessing.com
// Example 1-1: stroke and fill
function setup() {
createCanvas(480, 270);
stroke(0);
fill(150);
}
function draw() {
background(255);
rect(50,50,75,100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment