-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.html
21 lines (19 loc) · 1.28 KB
/
settings.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
<title>Meshmill Settings</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<input type="checkbox" id="imperial"><label for="imperial"><div class="has-tooltip"><div class="tooltip">Use inches and inches/min instead of mm and mm/min.</div></div>Imperial</label><br>
<!--<input type="checkbox" id="workflowhints"><label for="workflowhints">Show workflow hints (unimplemented)</label><br>-->
<input type="checkbox" id="showheightmap2d"><label for="showheightmap2d">Show 2D heightmap image</label><br>
<div class="has-tooltip"><div class="tooltip">Maximum velocity for cycle time estimates.</div></div>Max. velocity: <input type="text" id="maxvel"> units/min<br>
<div class="has-tooltip"><div class="tooltip">Maximum acceleration for cycle time estimates.</div></div>Max. accel (unimplemented): <input type="text" id="maxaccel"> units/sec<sup>2</sup><br>
<button id="save">Save</button> <button id="cancel">Cancel</button>
<script src="js/lib/jquery-3.6.0.min.js"></script>
<script src="js/settings-ui.js"></script>
</body>
</html>