-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
95 lines (95 loc) · 2.12 KB
/
help.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: arial;
}
code {
background-color: #eee;
border-radius: .25rem;
padding: .15rem .3rem;
}
table {
margin: 10px;
border-collapse: collapse;
width: 600px;
font-family: arial;
}
table tr th,
table tr td {
border: 1px solid #bbb;
padding: 5px;
}
table tr th {
background: #eee;
border: 1px solid #bbb;
text-align: left;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Action</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Hold <code>shift key</code> while left click on a curve</td>
<td>Create or move a pointer</td>
</tr>
<tr>
<td>Hold down <code>ctrl key</code> on a plot</td>
<td>Display points of the curve</td>
</tr>
<tr>
<td>Hold down <code>ctrl key</code> on a plot while <code>left click</code> on a curve</td>
<td>Create or move a pointer hooked on a point</td>
</tr>
<tr>
<td>Press <code>c key</code></td>
<td>Connect pointers</td>
</tr>
<tr>
<td>Hold down <code>x key</code> while <code>left click</code> on a connection</td>
<td>Delete the connection and its associated pointers</td>
</tr>
<tr>
<td>Use <code>wheel mouse</code> or <code>two-finger scroll on trackpad</code> on a plot</td>
<td>Zoom in/out in the plot</td>
</tr>
<tr>
<td>Use <code>wheel mouse</code> or <code>two-finger scroll on trackpad</code> on axis</td>
<td>Zoom in/out on horizontal/vertical axis</td>
</tr>
<tr>
<td>Hold down <code>left key</code> mouse on a plot</td>
<td>Pan in the plot</td>
</tr>
<tr>
<td>Press <code>a key</code> on a plot</td>
<td>Plot the 2 curves with an automatic vertical range and a horizontal range according to pointers</td>
</tr>
<tr>
<td>Press <code>A key</code> on a plot</td>
<td>Plot the curve with automatic vertical and horizontal ranges</td>
</tr>
<tr>
<td>Press <code>X key</code></td>
<td>Delete all pointers and connections</td>
</tr>
<tr>
<td>Press <code>z key</code></td>
<td>Display/Hide interpolated curve</td>
</tr>
<tr>
<td>Press <code>q key</code></td>
<td>Quit the application</td>
</tr>
</tbody>
</table>
</body>
</html>