-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
executable file
·51 lines (36 loc) · 1.64 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Braille Rap</title>
<!-- <script src="https://code.jquery.com/jquery-2.1.4.js"></script> -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/paper.js/0.10.2/paper-full.min.js"></script> -->
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.6.1/dat.gui.min.js"></script> -->
<script src="jquery-3.1.1.min.js"></script>
<script src="paper-full.min.js"></script>
<script src="dat.gui.min.js"></script>
<!-- <script src="StreamSaver.js"></script> -->
<!-- <script src="polyfill.min.js"></script> -->
<link rel="stylesheet" href="style.css" />
<script>var languages = {}</script>
<script src="braille6.js"></script>
<script src="braille8old.js"></script>
<script src="braille8new.js"></script>
<script src="script.js"></script>
</head>
<body>
<h1>Braille Rap</h1>
<p>Braille<em>Rap</em> est un projet visant à écrire du Braille sur papier à l'aide d'une imprimante 3D.</p>
<p><a href="https://github.com/arthursw/BrailleRap/blob/master/Documentation/documentation-fr.md">Documentation</a></p>
<p><a href="https://github.com/arthursw/BrailleRap">Github repository</a></p>
<div id="textareas">
<textarea id='latin' placeholder="Enter your text."></textarea>
<!-- <textarea id='braille'></textarea> -->
<div id="gui"></div>
</div>
<div id="output">
<canvas id="paperCanvas" resize hdpi></canvas>
<div id="gcode-container"><textarea id="gcode"></textarea></div>
<div>Print size: <span id="print-size">--</span></div>
</div>
</body>
</html>