Created
October 1, 2013 05:32
-
-
Save zmaril/6774252 to your computer and use it in GitHub Desktop.
Quicksort in 3d (?)
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
<!doctype html> | |
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<!-- CSS concatenated and minified via ant build script--> | |
<link rel="stylesheet" href="https://raw.github.com/zmaril/Quicksort-3D/master/css/style.css"> | |
<link rel="stylesheet" href="https://raw.github.com/zmaril/Quicksort-3D/master/css/ui-lightness/jquery-ui-1.8.16.custom.css"> | |
<!-- end CSS--> | |
<script src="https://raw.github.com/zmaril/Quicksort-3D/master/js/stats.js"></script> | |
<script src="https://raw.github.com/zmaril/Quicksort-3D/master/js/three.js"></script> | |
</head> | |
<body> | |
<div id="container"> | |
<header> | |
</header> | |
<div id="main" role="main"> | |
<form> | |
<div id="radio"> | |
<input type="radio" id="speed1" name="radio" /><label for="speed1">Slow</label> | |
<input type="radio" id="speed2" name="radio" checked="checked" /><label for="speed2">Normal</label> | |
<input type="radio" id="speed3" name="radio" /><label for="speed3">Fast</label> | |
</div> | |
</form> | |
</div> | |
<footer> | |
</footer> | |
</div> <!--! end of #container --> | |
<script src="https://raw.github.com/zmaril/Quicksort-3D/master/js/libs/jquery-1.6.2.min.js"></script> | |
<script src="https://raw.github.com/zmaril/Quicksort-3D/master/js/jquery-ui-1.8.16.custom.min.js"></script> | |
<script src="https://raw.github.com/zmaril/Quicksort-3D/master/js/underscore.js"></script> | |
<!-- scripts concatenated and minified via ant build script--> | |
<script defer src="https://raw.github.com/zmaril/Quicksort-3D/master/js/plugins.js"></script> | |
<script defer src="https://raw.github.com/zmaril/Quicksort-3D/master/js/script.js"></script> | |
<!-- end scripts--> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment