diff --git a/Lab09/index.html b/Lab09/index.html new file mode 100644 index 0000000000000000000000000000000000000000..93df91afd2ce6abb372a09b3f2dd116c2890160d --- /dev/null +++ b/Lab09/index.html @@ -0,0 +1,28 @@ +<html> + +<head> +<title>WebGL1.0 Tutorial Lab 07</title> +<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> +<script type="text/javascript" src="gl-matrix.js"> </script> +<script type="text/javascript" src="T07.js"> </script> + +</head> + +<body onload="main()"> + <canvas id="helloapicanvas" style="border: none;" width="800" height="600"></canvas> + + <br/> <br/> +<button onclick="toggleAnimation()">Toggle Animation</button> +<button onclick="speed_scale(1.1)"> + </button> +<button onclick="speed_scale(0.9)"> - </button> +<button onclick="fn_draw_mode(2)"> Lines </button> +<button onclick="fn_draw_mode(4)"> Triangles </button> +<button onclick="fn_draw_mode(0)"> Points </button> + <div class="form-example"> + <input style="width:500px" id="degree" type="range" min="30" max="150" oninput="fn_degree();"> + </div> + <button onclick="fn_degree(0)"> Degree Send </button> + +</body> + +</html>