Last active
September 14, 2018 20:18
-
-
Save lmccart/73ad4a1a97e380d71a9ed6c98442bbe1 to your computer and use it in GitHub Desktop.
test.html
This file contains 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
function setup() { | |
createCanvas(400, 400); | |
} | |
function touchEnded(e) { | |
console.log(e); | |
} |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<!-- <script src="//code.jquery.com/jquery-2.2.1.min.js"></script> --> | |
<script src='../lib/p5.js'></script> | |
<script src='../lib/addons/p5.dom.js'></script> | |
<script src='../lib/addons/p5.sound.js'></script> | |
<script src='sketch.js'></script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cd p5.js
python -m SimpleHTTPServer
** note: do not commit experiments folder to github repo