Skip to content

Instantly share code, notes, and snippets.

Created November 11, 2015 08:26
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 anonymous/863c73c184f22049caeb to your computer and use it in GitHub Desktop.
Save anonymous/863c73c184f22049caeb to your computer and use it in GitHub Desktop.
fresh block
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.18/p5.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
svg { width: 100%; height: 100%; }
</style>
</head>
<body>
<script>
function setup(){}
function draw() {
ellipse(50,50,50,50);
}
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment