Hong-Phuc Bui
2025-01-16 2889de7f0c2d587a17fbd322af57c29e84238620
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Sandkasten</title>
    <link rel="stylesheet" href="lib/dom-output.css" />
    <link rel="stylesheet" href="lib/dfhi.css" />
    <link rel="stylesheet" href="lib/dfhi-plot.css"/>
    <link rel="stylesheet" href="jsxgraph-experiment.css"/>
</head>
<body>
 
<div>
    <p>
        Sandkasten zum Testen der Bibliothek JSXGraph. Documentation:
        <a href="https://jsxgraph.org/docs/index.html">JSXGraph</a>
    </p>
Geben Sie die Anzahl der zu zeichenden Punkten ein: <input type="text" id="argv" name="argv" />
<button name="run" id="run" >Plot Punkten</button>
</p>
</div>
 
<div class="row">
    <div id="plotter-container" class="column">
        <div class="jxgbox" id="plotter"></div>
        <div>
            <button id="export">Export to SVG</button>
            <button id="axis">Show/hide Axis</button>
        </div>
    </div>
    <div id="text-output-container" class="column">
        <pre id="text-output"></pre>
    </div>
</div>
 
<p class="notice">
Das Programm plottet die Punkten auf der Lissajous-Kurve
\[
    \left\{\begin{array}{ccl}
        x &=& A\sin(at + \delta)\\
        y &=& B\cos(bt)
    \end{array}\right.
\]
für \(a = 3\), \(b = 4\) und \(A = B = 1\).</p>
<p>
 
 
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
 
<script src="jsxgraph-experiment.js" type="module"></script>
 
</body>
</html>