-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.html
More file actions
24 lines (20 loc) · 810 Bytes
/
main.html
File metadata and controls
24 lines (20 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" style="width: 100%; height: 100%;margin: 0; padding: 0">
<head>
<meta charset="utf-8">
<title>Graphics 2D</title>
</head>
<body>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraph.css"/>
<script src="https://cdn.jsdelivr.net/gh/paulmasson/math@1.4.9/build/math.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraphcore.js"></script>
<div id="graphics2d" class="jxgbox" style="max-width:800px; aspect-ratio: 1/1;"></div>
<script src="drawGraphics2d.js">
</script>
<script>
testRun()
</script>
</body>