-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
90 lines (79 loc) · 4.95 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="http://dmsm.github.io/scissors-congruence" />
<meta property="og:title" content="Scissors Congruence" />
<meta property="og:description" content="An interactive demonstration of the Wallace–Bolyai–Gerwien theorem." />
<meta property="og:image" content="http://dmsm.github.io/scissors-congruence/img/wbg.jpg" />
<meta property="og:type" content="article" />
<meta property="fb:admins" content="1310192800" />
<title>Scissors Congruence</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/two.min.js"></script>
<script type="text/javascript" src="js/math.min.js"></script>
<script type="text/javascript" src="js/polyk.js"></script>
<script type="text/javascript" src="js/transformations.js"></script>
<script type="text/javascript" src="js/polygons.js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-53112709-7');
</script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5&appId=1071865532855419";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="container-fluid">
<div class="row">
<div id="canvas" class="col-sm-8"></div>
<div class="col-sm-4 scroll">
<div id="sidebar">
<div id="sidebar-content">
<h1>Scissors Congruence<br><small>An interactive demonstration of the <a href="https://en.wikipedia.org/wiki/Wallace%E2%80%93Bolyai%E2%80%93Gerwien_theorem">Wallace–Bolyai–Gerwien theorem.</a></small></h1>
<p>by <a href="https://people.csail.mit.edu/smirnov/">Dima Smirnov</a> and <a href="http://zepstein.com">Zivvy Epstein</a></p>
<div class="panel panel-default">
<div class="panel-heading"><h4>Theorem</h4></div>
<div class="panel-body">
<img class="img-responsive" src="img/wbg.jpg">
<p>
Any simple polygon can be cut into finite pieces and rearranged to form any other simple polygon of equal area.
</p>
</div>
</div>
<p>Read our paper presented at the Symposium on Computational Geometry 2016 <a href="http://drops.dagstuhl.de/opus/volltexte/2016/5958/pdf/LIPIcs-SoCG-2016-66.pdf">here</a>.</p>
<div class="social">
<div class="fb-like" data-href="http://dmsm.github.io/scissors-congruence" data-layout="button_count" data-action="like" data-show-faces="true" data-share="true"></div>
<a href="https://twitter.com/share" class="twitter-share-button">Tweet</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<iframe class="git" src="https://ghbtns.com/github-btn.html?user=dmsm&repo=scissors-congruence&type=star&count=true" frameborder="0" scrolling="0" width="170px" height="25px"></iframe>
</div>
</div>
<div id="controls">
<button id="play-pause" type="button" class="btn btn-default" disabled>
<span class="glyphicon glyphicon-pause" aria-hidden="true"></span> Pause
</button>
<button id="replay" type="button" class="btn btn-default" disabled>
<span class="glyphicon glyphicon-repeat" aria-hidden="true"></span> Replay
</button>
<button id="demo" type="button" class="btn btn-default">
<span class="glyphicon glyphicon-film" aria-hidden="true"></span> Demo
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>