Last active
January 3, 2016 12:29
-
-
Save caubry/8463575 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setup = function() { | |
var body = document.getElementById("body"); | |
var canvas = document.createElement("canvas"); | |
canvas.width = 1200; | |
canvas.height = 720; | |
body.appendChild(canvas); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment