-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesercizio1.html
34 lines (33 loc) · 1.03 KB
/
esercizio1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html>
<head>
<!--
Gruppo:
- Bulzoni Federico
- Guerra Antonio
- Zambello Nicola
-->
<title>Esercizio 1</title>
<link rel="stylesheet" href="build/style.css">
</head>
<body>
<canvas id="webgl-es1">
Please, use a browser that supports canvas
</canvas>
<input id="color-input" value="#FF0000" type="color">
<div class="help-button">
<i class="help-icon">?</i>
<p class="help-label">
Click in two points on the screen to draw a rectangle.
<br/> Press Ctrl-z to
<em>undo</em> last action.
<br/> Select rectangle color using the color picker in the right.
</p>
</div>
<script src="lib/webgl-utils.js"></script>
<script src="lib/webgl-debug.js"></script>
<script src="lib/cuon-utils.js"></script>
<script src="build/esercizio1.js">
</script>
</body>
</html>