This repository has been archived by the owner on Oct 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (58 loc) · 1.54 KB
/
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
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
<!doctype html>
<html>
<head>
<title>COP290 Updates</title>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style type="text/css">
body {
background-color: #f0f0f2;
margin: 0;
padding: 0;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
div {
width: 600px;
margin: 5em auto;
padding: 50px;
background-color: #fff;
border-radius: 1em;
}
a:link,
a:visited {
color: #38488f;
text-decoration: none;
}
@media (max-width: 700px) {
body {
background-color: #fff;
}
div {
width: auto;
margin: 0 auto;
border-radius: 0;
padding: 1em;
}
}
</style>
</head>
<body>
<div>
<center>
<h1>COP290 Progress Updates</h1>
<h5>Shashwat Shivam (2016CS10328) and Sushant Rathi (2016CS10329)</h5>
<br>
<a href="https://github.com/ankurshaswat/COP290"> Github Repo Link </a>
<h3>Project 1 (Orthographic Projections)</h3>
</center>
Steps:-
<ol>
<li> <a href="References/Mathematical Formulation/math.pdf"> Mathematical Formulation added</a> </li>
<li> <a href="References/funcSpec.pdf"> Functional Specification added</a> </li>
<li> <a href="docs\html\index.html"> Documenation </a> and Makefiles added</li>
<li> Code for 2d to 3d and 3d to 2d done.</li>
</ol>
</div>
</body>
</html>