forked from albertsun/JavaScript-Geometry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfindintersections.html
More file actions
31 lines (25 loc) · 1.36 KB
/
Copy pathfindintersections.html
File metadata and controls
31 lines (25 loc) · 1.36 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
30
31
<!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 findIntersections</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 src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="jquery-1.6.1.min.js"%3E%3C/script%3E'));</script>
<script type="text/javascript" src="../datastructures/RedBlackMap.js"></script>
<script type="text/javascript" src="../datastructures/dictionary.js"></script>
<script type="text/javascript" src="../findintersections/findintersections.js"></script>
<script type="text/javascript" src="findintersections.js"></script>
</body>
</html>