Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html>
<head>
<title>Line Sweep Algorithm</title>
<link rel="stylesheet" href="./style.css">
<script type="text/javascript" src="./node_modules/paper/dist/paper-full.min.js"></script>
<script type="text/javascript" src="ls.js"></script>
<script type="text/javascript" src="convexityTest.js"></script>
<script type="text/javascript" src="main.js">
</script>
</head>
<body>
<div id="header">
<h3 id="failure" class="no-disp">Not Convex!</h3>
<div class="divButton">
<input type="button" value="line sweep" onclick="runLineSweep()" />
<input type="button" value="clear" onclick="clearGraph()" />
<input type="button" value="reset" onclick="initLineSweep()" />
<input type="button" value="Convexity Test" onclick="runConvTest()" />
</div>
<h3 id="success" class="no-disp">Convex!!</h3>
</div>
<canvas id="myCanvas" resize></canvas>
</body>
</html>