-
Notifications
You must be signed in to change notification settings - Fork 2
/
fcbi.html
31 lines (31 loc) · 1.35 KB
/
fcbi.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
<html>
<head>
<meta charset="utf-8">
<meta name="copyright" content="Copyright © 2017/03/03- [email protected] . All Rights Reserved.">
<title> FCBI (Fast Curvature Based Interpolation) </title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div id="controlPanel">
<div>
TM:<input id="TMRange" type="range" min="4" max="150" step="1" value="20" />:<input type="text" id="TMText" size="3" />
edgeMode:<input id="edgeModeCheckbox" type="checkbox" />
phaseLimit:<input id="phaseLimitRange" type="range" min="1" max="3" step="1" value="3" />:<input type="text" id="phaseLimitText" size="1" />
</div>
<div>
maxWidthHeight:<input id="maxWidthHeightRange" type="range" min="16" max="2000" step="1" value="320" />:<input type="text" id="maxWidthHeightText" size="3" />
</div>
</div>
<div>
<canvas id="srcCanvas" class="borderRed" width=320 height=240> srcCanvas </canvas>
<canvas id="dstCanvas" class="borderBlue" width=320 height=240> dstCanvas </canvas>
</div>
</div>
<script type="text/javascript" src="lib/drop.js"> </script>
<script type="text/javascript" src="lib/bind.js"> </script>
<script type="text/javascript" src="lib/canvas.js"> </script>
<script type="text/javascript" src="lib/color.js"> </script>
<script type="text/javascript" src="fcbi.js"> </script>
</body>
</html>