4230-hw-1/ChaosGame/ChaosGame.html

19 lines
457 B
HTML
Raw Normal View History

2022-06-23 20:50:00 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Chaos Game</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="ChaosGame.js"></script>
</body>
</html>