forked from stephomi/sculptgl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c261a04
commit f82d553
Showing
2 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,6 @@ | |
.DS_Store | ||
.idea/* | ||
.parcel-cache | ||
app/index.html | ||
app/sculptgl.js | ||
cache/* | ||
dist | ||
build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!doctype html> | ||
<html lang='en'> | ||
|
||
<head> | ||
<meta charset='utf-8' /> | ||
<meta name='description' content='Sculpt NG is a small sculpting application powered by JavaScript and webGL.'> | ||
<meta name='author' content='stéphane GINIER'> | ||
<meta name='mobile-web-app-capable' content='yes'> | ||
<meta name='apple-mobile-web-app-capable' content='yes'> | ||
|
||
<title> Sculpt NG - A WebGL sculpting app </title> | ||
|
||
<link rel='stylesheet' type='text/css' href='https://fonts.googleapis.com/css?family=Open+Sans:400,600'> | ||
<link rel='stylesheet' type='text/css' href='./css/yagui.css' /> | ||
|
||
<script> | ||
'use strict'; | ||
|
||
window.addEventListener('load', function () { | ||
var app = new window.SculptGL(); | ||
app.start(); | ||
}); | ||
</script> | ||
</head> | ||
|
||
<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' /> | ||
<input type='file' id='matcapopen' style='display: none' /> | ||
|
||
<div id='viewport'> | ||
<canvas id='canvas'></canvas> | ||
</div> | ||
|
||
<script src='./js/main.js' type="module"></script> | ||
</body> | ||
|
||
</html> |