-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (22 loc) · 974 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Web Graphics Framework</title>
<script src="Math/Numeric.js"></script>
<script src="Math/Vector2.js"></script>
<script src="Animation/Timelines/Timeline.js"></script>
<script src="Animation/Timelines/Vector2Timeline.js"></script>
<script src="Animation/Animators/Animator.js"></script>
<script src="Animation/Animators/Vector2Animator.js"></script>
<script src="Animation/Animators/Vector2DispAnimator.js"></script>
<script src="Animation/Animators/Vector2AngAnimator.js"></script>
<script src="Animation/Controllers/TwoDimTransformAnimator.js"></script>
<script src="Math/Rectangle2.js"></script>
<script src="Rendering/Quad.js"></script>
<script src="Rendering/QuadRenderer.js"></script>
</head>
<body onload="start()" style="background-color:black; margin: 0 0;">
<canvas id="screen" width="800" height="600"></canvas>
</body>
</html>