Skip to content

Commit 032d3b0

Browse files
committed
Added license. Moved all math objects into math-folder
1 parent c41a666 commit 032d3b0

11 files changed

+36
-6
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2010-2011 GLOW Authors. All rights reserved.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

index.html

+7-6
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,15 @@
1919
<div id="container"></div>
2020

2121
<script type="text/javascript" src="src/GLOW.js"></script>
22+
23+
<script type="text/javascript" src="src/math/Float.js"></script>
24+
<script type="text/javascript" src="src/math/Int.js"></script>
25+
<script type="text/javascript" src="src/math/Vector3.js"></script>
26+
<script type="text/javascript" src="src/math/Matrix3.js"></script>
27+
<script type="text/javascript" src="src/math/Matrix4.js"></script>
28+
2229
<script type="text/javascript" src="src/core/Context.js"></script>
2330
<script type="text/javascript" src="src/core/FBO.js"></script>
24-
<script type="text/javascript" src="src/core/Float.js"></script>
25-
<script type="text/javascript" src="src/core/Int.js"></script>
26-
<script type="text/javascript" src="src/core/Vector3.js"></script>
27-
<script type="text/javascript" src="src/core/Matrix3.js"></script>
28-
<script type="text/javascript" src="src/core/Matrix4.js"></script>
2931
<script type="text/javascript" src="src/core/Texture.js"></script>
3032
<script type="text/javascript" src="src/core/Cache.js"></script>
3133
<script type="text/javascript" src="src/core/Camera.js"></script>
@@ -60,7 +62,6 @@
6062
this.elements = GLOW.Geometry.Cube.elements();
6163
this.uvs = GLOW.Geometry.Cube.uvs();
6264
this.normals = GLOW.Geometry.faceNormals( this.vertices, this.elements );
63-
6465
},
6566

6667
vertexShader: [

src/extras/io/ThreeJSLoader.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/*
2+
*
3+
*/
4+
5+
GLOW.ThreeJSLoader = function() {
6+
7+
8+
}
File renamed without changes.

src/core/Int.js src/math/Int.js

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)