setup_analyser/index.html

58 lines
2.1 KiB
HTML
Raw Normal View History

2025-01-15 22:24:43 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
2025-01-21 02:42:11 -05:00
<script src="analyser.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
2025-01-15 22:24:43 -05:00
<link rel="stylesheet" href="analyser.css" />
<title>Wiredraw Setup Analyser</title>
</head>
<body>
2025-01-21 02:42:11 -05:00
<p>&nbsp;</p>
2025-01-15 22:24:43 -05:00
<div class="content">
<div class="header">
<p id="vanity">Taylor Courage's</p>
<h1>Setup Analyser</h1>
<p>Use this tool to visualize the setup of wiredraw machinery</p>
<p>&HorizontalLine;</p>
</div>
<div class="body" id="body">
<label for="die0">Start: </label>
2025-01-21 02:42:11 -05:00
<input type="text" id="die0" autocomplete="off" value="0.0" size="4" onchange="doMath()"/>
2025-01-15 22:24:43 -05:00
<input type="radio" name="units" id="metric" value="mm" checked tabindex=-1 />
<label for="metric">mm</label>
<input type="radio" name="units" id="inches" value="in" tabindex=-1 />
<label for="inches">in</label>
<p></p>
<button name="Add Draft" id="addReduction" onclick="addReduction()">Add</button>
<button name="Remove Draft" id="removeReduction" onclick="removeReduction()">Remove</button>
<p></p>
2025-01-15 22:24:43 -05:00
<table id="data">
2025-01-21 02:42:11 -05:00
<tr style="font-size: 75%;">
<td><p></p>Draft<p></p></td>
2025-01-21 02:42:11 -05:00
<td>Exit Dia.</td>
<td>Angle (2α)</td>
</tr>
2025-01-15 22:24:43 -05:00
</table>
<p></p>
<button name="Calculate" id="calculateButton" onclick="doMath()">Recalculate</button>
2025-01-15 22:24:43 -05:00
<script>addReduction()</script>
<script>addReduction()</script>
<p>&nbsp;</p>
2025-01-15 22:24:43 -05:00
<p></p>
<table class="output" id="output"></table>
2025-01-15 22:24:43 -05:00
<p>&nbsp;</p>
<p id="outputChart">&nbsp;</p>
2025-01-15 22:24:43 -05:00
</div>
</div>
<div class="footer" align="center">
<p>&nbsp;</p>
<p>&copy; 2025 <a href="http://git.taylorcourage.net/Taylor">Taylor Courage</a></p>
</div>
</body>
</html>