mirror of
https://github.com/anvaka/isect.git
synced 2026-01-25 14:44:51 +00:00
58 lines
1.9 KiB
HTML
58 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TXT6313TGG"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-TXT6313TGG');
|
|
</script>
|
|
<meta property="og:title" content="intersection detection library demo" />
|
|
<meta property="og:image" content="https://i.imgur.com/JbyjQLX.png" />
|
|
<meta property="og:description" content="This is a demo of segment intersection detection library for JavaScript." />
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
<meta name="Description" content="This is a demo of segment intersection detection library for JavaScript.">
|
|
<meta name="keywords" content="segment intersection, sweep line, bentley ottman" />
|
|
<meta name="author" content="Andrei Kashcha">
|
|
<title>isect demo</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: white;
|
|
background: #101830;
|
|
}
|
|
canvas {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
.loading {
|
|
text-align: center;
|
|
margin-top: 60px;
|
|
font-size: 24px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<strong>We're sorry but sweep doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
</noscript>
|
|
<canvas id='scene'></canvas>
|
|
<div id="app">
|
|
<div class='loading'>
|
|
Loading...
|
|
</div>
|
|
</div>
|
|
<!-- built files will be auto injected -->
|
|
</body>
|
|
</html>
|