-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (60 loc) · 3.25 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
<!DOCTYPE html>
<html>
<head>
<title>Paul Kaplan</title>
<meta charset="utf-8" />
<meta name="description" content="Personal website for Paul Kaplan" />
<meta name="keywords" content="Paul,Kaplan,UChicago,University of Chicago, personal, interfaces" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<!--[if lte IE 9]><link rel="stylesheet" href="css/ie.css" type="text/css" media="screen" /><![endif]-->
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600|Merriweather:400,300,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="Manifest/css/1140.css" type="text/css" media="screen" />
<link rel="stylesheet" href="Manifest/css/paulkaplan.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="Manifest/css/site.css" type="text/css" media="screen"/>
</head>
<body>
<div class="container">
<div class="row header">
<div class="fourcol name">
<h1><span class="big">Paul Kaplan</span></h1>
</div>
<div class="eightcol last right">
<a href="#">About</a> | <a href="#">Current Projects</a> | <a href="#">Past Projects</a>
</div>
</div>
<div class="row page">
<h2>Current Projects</h2>
</div>
<div class="row content">
<div class="fivecol project">
<img src="Manifest/img/projects/antThumb.png" alt="Ant Chase" />
<h3>ant chase</h3>
<p>WebGL powered visualization of chaotic orbits arising from simple dynamical system. An extension of my final project for PHYS25100 Chaos, Complexity and Computers</p>
</div>
<div class="onecol"></div>
<div class="fivecol project last">
<img src="Manifest/img/projects/lightsThumb.png" alt="Light Board" />
<h3>light board</h3>
<p>A 'theatre' with 14 fully adjustable lights with a system to add timed light cues, implemented in WebGL. I made this so I could do my scenic design homework without having to go across campus.</p>
</div>
</div>
<div class="row">
<div class="fivecol project">
<img src="Manifest/img/projects/noise.png" alt="Light Board" />
<h3>noisy controls</h3>
<p>One interesting problem I've been facing is efficient GPU noise and (pseudo)randomness. Visual noise is combined with "control noise", the interaction is not random, but very unclear.</p>
</div>
<div class="onecol"></div>
<div class="fivecol project last">
<img src="Manifest/img/projects/logisticMap.png" alt="Light Board" />
<h3>bifurcation diagram</h3>
<p>An interactive bifurcation diagram showing the period doubling behaviour of (in this case) the <a href="http://en.wikipedia.org/wiki/Logistic_map" alt="logistic map">logistic map</a>. To do: implement other functions, show universality, trace out the f(x=0.5) lines.</p>
</div>
</div>
</div>
<div class="row footer"></div>
</body>
<script src="Manifest/js/jquery.js" type="text/javascript"></script>
<script src="Manifest/js/paulkaplan.js" type="text/javascript"></script>
<script src="Manifest/js/mediaqueries.js" type="text/javascript"></script>
</html>