-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (27 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<title>Convert SVG Paths to an Array of THREE Path vectors</title>
</head>
<body>
<h1>Convert SVG Paths to an Array of THREE Path vectors</h1>
<h2>SVG Path Input:</h2>
<p>"M-782.239-51.21\
v338.43c0,4.869,2.819,11.679,6.264,15.121l257.258,257.252c3.445,3.451,10.25,6.263,15.113,6.263 M1029.1,168.446\
c0-7.607,6.16-13.771,13.771-13.771h127.069c7.601,0,13.771-6.166,13.771-13.776V-14.007c0-7.604-6.17-13.775-13.771-13.775H1042.87\
c-7.61,0-13.771,6.171-13.771,13.775 M1029.1-213.652v516.811c0,2.813-2.819,9.627-6.26,13.065L875.1,463.966\
c-3.439,3.445-10.239,6.257-15.109,6.257"</p>
<h2>THREE Output</h2>
<p>Check your console.</p>
<script src="js/lib/SVGToThree.js"></script>
<script>
var pathCommands = new SVGToThree("M-782.239-51.21\
v338.43c0,4.869,2.819,11.679,6.264,15.121l257.258,257.252c3.445,3.451,10.25,6.263,15.113,6.263 M1029.1,168.446\
c0-7.607,6.16-13.771,13.771-13.771h127.069c7.601,0,13.771-6.166,13.771-13.776V-14.007c0-7.604-6.17-13.775-13.771-13.775H1042.87\
c-7.61,0-13.771,6.171-13.771,13.775 M1029.1-213.652v516.811c0,2.813-2.819,9.627-6.26,13.065L875.1,463.966\
c-3.439,3.445-10.239,6.257-15.109,6.257");
// document.getElementById('output').innerHTML = pathCommands;
console.log(pathCommands);
</script>
</body>
</html>