-
Notifications
You must be signed in to change notification settings - Fork 14
/
lic.html
40 lines (33 loc) · 1.14 KB
/
lic.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
<!doctype html>
<head>
<title>LIC - Vector Field Visualization</title>
<link href='http://fonts.googleapis.com/css?family=Crimson+Text' rel='stylesheet' type='text/css'>
<link rel="stylesheet" media="all" type="text/css" href='style.css' />
<style>
div.canvas-container {
box-shadow: none;
}
#container {
width: 500px;
}
</style>
</head>
<body>
<div id="fallback" class="fallback"></div>
<div id="container">
<div id="title">
<h1>F(x, y) = (-y, x) visualized via LIC</h1>
</div>
<div class='description'>
This visualization implements the techniques in <a target='_blank' href='http://www.cs.umu.se/kurser/TDBD13/VT00/extra/p263-cabral.pdf'>Imaging Vector Fields Using Line Integral Convolution</a> to visualize a simple vector field.
</div>
<div class='canvas-container'>
<canvas id='canvas'></canvas>
</div>
</div>
<div class="footer">
Copyright © <a href='http://twitter.com/'>Twitter, Inc.</a> - Author: <a href="http://philogb.github.com/">Nicolas Garcia
Belmonte</a>.
</div>
<script src='js/lic.js'></script>
</body>