forked from stephomi/sculptgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 1.74 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
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'/>
<meta name='description' content='SculptGL is a small sculpting application powered by JavaScript and webGL.'>
<meta name='author' content='stéphane GINIER'>
<title> SculptGL - A WebGL sculpting app </title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
<link rel='stylesheet' href='css/yagui.css' type='text/css'/>
<script>
window.nodeRequire = window.require;
window.require = undefined;
</script>
<!-- 3rd party libraries -->
<script src='lib/FileSaver.js'></script>
<script src='lib/gl-matrix.js'></script>
<script src='lib/yagui.js'></script>
<script src='lib/zip.js'></script>
<script data-main='main' src='tools/require.js'></script>
</head>
<!--
____ _ _ ____ _
/ ___| ___ _ _| |_ __ | |_ / ___| |
\___ \ / __| | | | | '_ \| __| | _| |
___) | (__| |_| | | |_) | |_| |_| | |___
|____/ \___|\__,_|_| .__/ \__|\____|_____|
|_|
A tiny sculpting application.
Stéphane GINIER
-->
<body oncontextmenu='return false;'>
<input type='file' id='fileopen' multiple style='display: none'/>
<input type='file' id='backgroundopen' style='display: none'/>
<input type='file' id='alphaopen' style='display: none'/>
<input type='file' id='textureopen' style='display: none'/>
<form id='donate' action='https://www.paypal.com/cgi-bin/webscr' method='post' target='_blank'>
<input type='hidden' name='cmd' value='_s-xclick'>
<input type='hidden' name='hosted_button_id' value='5VK9DG927CS3Y'>
<canvas id='canvas'></canvas>
<!-- wacom tablet plugin -->
<object id='tablet-plugin' type='application/x-wacomtabletplugin'></object>
</body>
</html>