-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
32 lines (25 loc) · 976 Bytes
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" rel="script"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.4/jspdf.min.js"></script>
<script src="https://rawgit.com/mrdoob/three.js/dev/build/three.js"></script>
<script src="https://rawgit.com/mrdoob/three.js/dev/examples/js/controls/OrbitControls.js"></script>
<title></title>
</head>
<body onload="start()" style="text-align:center">
<canvas id="obj"></canvas>
<br/>
<br/>
<button onclick="printImage()">print to PDF</button>
<br/>
<br/>
<textarea id="printBase64" style="width:600px; height:300px"></textarea>
<script src="canvas.js"></script>
<script src="obj.js"></script>
<script src="printImage.js"></script>
</body>
</html>