-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphics.html
150 lines (126 loc) · 5 KB
/
graphics.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<!--
(2020) linda s. ting
personal webpage coded for my own purposes;
please do not copy, redistribute, or claim as your own!
-->
<link rel="icon" type="image/png" href="img/icons/favicon.png">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-160968905-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-160968905-1');
</script>
<title>hiya!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ubuntu+Mono"/>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="nav">
<div class="nav-content">
<a href="index.html"><div class="nav-btn">
home
</div></a>
<a href="graphics.html"><div class="nav-btn">
code
</div></a>
<a href="research.html"><div class="nav-btn">
research
</div></a>
<div class="dropdown"><a href="design.html"><div class="nav-btn">design</div></a>
<div class="dropdown-content">
<a href="tumblr.html">tumblr</a><br/>
<a href="spotify.html">spotify</a><br/>
<a href="dp.html">the dp</a><br/>
<a href="fnar264.html">fnar 264</a><br/>
</div>
</div>
<a href="art.html"><div class="nav-btn">
art
</div></a>
<a href="about.html"><div class="nav-btn">
about
</div></a>
</div>
</div>
<div class="container">
<div class="gallerytitle"><p>🔮 my code:</p></div>
<div class="textcard">
<p>
Below is a video demo of my material point method (MPM) implementation coded in C++. MPM is a particle-based simulation technique.
The following cube was simulated with 100,000 particles.
My code can be found <b><a href="https://github.com/linda-ting/mpm" target="_blank">here</a></b>.
</p>
</div>
<div class="textcard">
<iframe src="https://drive.google.com/file/d/1d4vvgMemeKOzZZ3XftQVzDIjb8YejMwG/preview" width="100%" height="300"></iframe>
<p style="text-align:center">material point method</p>
<div class="tags">
<div class="tag">c++</div>
</div>
</div>
<div class="textcard">
<p>The two images directly below are renders from a path tracer coded in C++. The path tracer utilizes
the Monte Carlo integration method to render 3-dimensional geometry with global illumination.
Other implemented features in the tracer include photon mapping, depth of field (thin lens camera),
multiple importance sampling, and more.</p>
</div>
<div class="gallery">
<div class="gallerycontainer"><img class="galleryart" src="img/graphics/custom2.png">
<p>custom scene 1</p>
<div class="tags">
<div class="tag">c++</div>
</div>
</div>
<div class="gallerycontainer"><img class="galleryart" src="img/graphics/custom1.png">
<p>custom scene 2</p>
<div class="tags">
<div class="tag">c++</div>
</div>
</div>
</div>
<div class="textcard">
<iframe src="https://upenn.app.box.com/embed/s/vmd7j8919bmfaf0h4uuf6hr5s8poobyl?sortColumn=date&view=list" width="100%" height="300" frameborder="0" allowfullscreen webkitallowfullscreen msallowfullscreen></iframe>
<p style="text-align:center">mini minecraft</p>
<div class="tags">
<div class="tag">c++</div>
<div class="tag">opengl</div>
</div>
</div>
<div class="textcard">
<iframe src="https://upenn.app.box.com/embed/s/eb3zqokwcr1jjj6s9mxt7awnzils8rmy?sortColumn=date&view=list" width="100%" height="300" frameborder="0" allowfullscreen webkitallowfullscreen msallowfullscreen></iframe>
<p style="text-align:center">surface & post-process shaders</p>
<div class="tags">
<div class="tag">c++</div>
<div class="tag">opengl</div>
</div>
</div>
<div class="textcard">
<p><img class="galleryart" src="img/graphics/environment.png"></p>
<p style="text-align:center">coffee shop model</p>
<div class="tags">
<div class="tag">maya</div>
</div>
</div>
<div class="textcard">
<p><img class="galleryart" src="img/graphics/gudetama.gif"></p>
<p style="text-align:center">shadertoy: <b><a href="https://www.shadertoy.com/view/WdffDX" target="_blank">gudetama</a></b></p>
<div class="tags">
<div class="tag">opengl</div>
</div>
</div>
<div class="footer">
<p>
<a href="https://www.instagram.com/lindasfieldnotes/" target="_blank" title="instagram"><img class="icon" src="img/icons/instagram.svg"></a>
<a href="https://www.linkedin.com/in/lindating/" target="_blank" title="linkedin"><img class="icon" src="img/icons/linkedin.svg"></a>
<a href="https://github.com/linda-ting" target="_blank" title="github"><img class="icon" src="img/icons/github.svg"></a>
</p>
<p>made with 😘 in boston | linda s. ting</p>
</div>
</div>
</body>
</html>