blob: 260af5ebf0c557e8333f27a766ea18462bfb5dec (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="scripts/jquery-3.5.1.min.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" href="index.css">
<title>Roadmap</title>
<style>
section ul {
list-style: none;
padding-left: 0;
}
section li {
position: relative;
padding-left: 1.5em; /* space to preserve indentation on wrap */
}
section li:before {
content: '';
position: absolute;
left: 0;
width: 1rem;
height: 1rem;
}
section ul {
list-style: none;
}
section ul li:before {
content: '-';
}
section ul li.done:before {
content: '✓';
}
.done {
color: lightgreen;
}
.halfway {
color: orange;
}
section ul li.done:before {
content: '⚠'
}
</style>
</head>
<body>
<header>
<h1>Physics for Games</h1>
</header>
<main>
<nav></nav>
<section>
<h1>April 2021: Ground Work and Initial Collisions</h1>
<ul>
<li class="done">Orthographic rendering basics</li>
<li class="done">Uniform build Process for WebAssembly</li>
<li class="done">WASM Framework with simulation loop</li>
</ul>
<hr/>
<h1>2D Collisions with Descriptions</h1>
<ul>
<li class="halfway">Pill-Line Collision</li>
<li>Pill-Pill Collisions</li>
<li>Pill-Circle Collisions</li>
<li>Pill-Square Collisions</li>
<li class="done">Rectangle-Line Collisions</li>
<li>Circle-Line Collisions (Redo)</li>
<li>Rectangle-Circle Collision</li>
</ul>
<hr />
<h1>Brief Wasm Series</h1>
<ul>
<li>Getting started with WASM docs</li>
<li>Wasm examples</li>
</ul>
<p style="color: pink; font-size: 18px;">
Everything above has a due date of <b>April 30th, 2021</b>. None of it is that hard, so this should be a very doable timeline.
</p>
</section>
</main>
</body>
</html>
|