Skip to content

Instantly share code, notes, and snippets.

@seabre
Created April 6, 2013 03:56
Show Gist options
  • Save seabre/5324700 to your computer and use it in GitHub Desktop.
Save seabre/5324700 to your computer and use it in GitHub Desktop.
Basic WebGL (with three.js) Template
var App = App || {};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Basic WebGL (with three.js) Template</title>
</head>
<body>
<div id="container"></div>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.1.min.js"></script>
<script src="http://mrdoob.github.com/three.js/build/three.min.js"></script>
<script src="app.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment