forked from albertsun/JavaScript-Geometry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbarycentric.html
More file actions
29 lines (24 loc) · 1.23 KB
/
Copy pathbarycentric.html
File metadata and controls
29 lines (24 loc) · 1.23 KB
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
<!doctype html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<title>Test barycentric simplex subdivision</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="modernizr-1.6.min.js"></script>
</head>
<body style="background-color: #CCCCFF;">
<div id="wrapper">
<canvas id="basic" width="600" height="600" style="margin:8px; background-color:#FFFFFF;"></canvas>
</div>
<script type="text/javascript" src="../datastructures/underscore-min.js"></script>
<script type="text/javascript" src="../datastructures/sylvester.js"></script>
<script type="text/javascript" src="../barycentric/barycentric.js"></script>
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="barycentric.js"></script>
</body>
</html>