Solve Program 2: Chaos Game

This commit is contained in:
2022-06-23 15:50:00 -05:00
parent f251b3df76
commit cd059c967b
3 changed files with 164 additions and 1 deletions

18
ChaosGame/ChaosGame.html Normal file
View File

@@ -0,0 +1,18 @@
<!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>