-
Notifications
You must be signed in to change notification settings - Fork 10
/
algebra.html
31 lines (27 loc) · 972 Bytes
/
algebra.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<link href="algebra.css" rel="stylesheet" type="text/css">
<title>Linear Equation Grapher</title>
</head>
<body>
<div id="grapher-main">
<div id="blocklydiv" class="grapher-workspace"></div>
<div id="canvasdiv" class="grapher-grid"></div>
</div>
<xml id="toolbox" style="display: none">
<block type="grapher_si_equation"></block>
<block type="grapher_std_equation"></block>
<block type="grapher_ps_equation"></block>
<block type="grapher_table"></block>
<block type="grapher_graph"></block>
<block type="grapher_number"></block>
<block type="grapher_pair"></block>
</xml>
<script src="js/vendor/blockly/blockly_compressed.js"></script>
<script src="js/vendor/blockly/javascript_compressed.js"></script>
<script src="js/vendor/blockly/msg/js/en.js"></script>
<script src="js/algebra/main.js"></script>
</body>
</html>