From d3501a59a80dfa76175fdb8733ba83954c7cb488 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=ED=98=84=EC=9A=B1?= <chu9741@ajou.ac.kr> Date: Tue, 18 May 2021 10:55:01 +0900 Subject: [PATCH] Upload New File --- Lab09/index.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Lab09/index.html diff --git a/Lab09/index.html b/Lab09/index.html new file mode 100644 index 0000000..93df91a --- /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> -- GitLab