20 lines
542 B
HTML
20 lines
542 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Draw cube with specification of face color</title>
|
|
</head>
|
|
|
|
<body onload="main()">
|
|
<canvas id="webgl" width="400" height="400">
|
|
Please use a browser that supports "canvas"
|
|
</canvas>
|
|
|
|
<script src="../lib/webgl-utils.js"></script>
|
|
<script src="../lib/webgl-debug.js"></script>
|
|
<script src="../lib/cuon-utils.js"></script>
|
|
<script src="../lib/cuon-matrix.js"></script>
|
|
<script src="RotatingCube.js"></script>
|
|
</body>
|
|
</html>
|