Skip to content

Instantly share code, notes, and snippets.

@charljulien
Created April 17, 2016 11:20
Show Gist options
  • Save charljulien/6cb2437ff3ac8e81e31c75139de53185 to your computer and use it in GitHub Desktop.
Save charljulien/6cb2437ff3ac8e81e31c75139de53185 to your computer and use it in GitHub Desktop.
fresh block 2
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>p5js Template</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.13/p5.js"></script>
<script>
function setup() {
createCanvas(windowWidth-20, windowHeight-20);
rect(100,100,100,100);
ellipse(300, 300, 100, 50);
line(30, 20, 85, 75);
}
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment