Skip to content

Instantly share code, notes, and snippets.

@MacroMachines
Created January 6, 2018 18:41
Show Gist options
  • Select an option

  • Save MacroMachines/f96925e542f212df876c9ebdf1364780 to your computer and use it in GitHub Desktop.

Select an option

Save MacroMachines/f96925e542f212df876c9ebdf1364780 to your computer and use it in GitHub Desktop.
empty-example
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
}
html, body {
margin: 0;
padding: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment