Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Nicholas Wech
three.js-lite
Commits
a4088b89
Commit
a4088b89
authored
13 years ago
by
Mr.doob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
r48
parent
0c63e500
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
62 additions
and
64 deletions
+62
-64
README.md
README.md
+0
-2
build/Three.js
build/Three.js
+28
-28
build/custom/ThreeCanvas.js
build/custom/ThreeCanvas.js
+1
-1
build/custom/ThreeDOM.js
build/custom/ThreeDOM.js
+1
-1
build/custom/ThreeExtras.js
build/custom/ThreeExtras.js
+28
-28
build/custom/ThreeSVG.js
build/custom/ThreeSVG.js
+1
-1
build/custom/ThreeWebGL.js
build/custom/ThreeWebGL.js
+1
-1
docs/index.html
docs/index.html
+1
-1
src/Three.js
src/Three.js
+1
-1
No files found.
README.md
View file @
a4088b89
...
...
@@ -74,8 +74,6 @@ More? [#three.js on irc.freenode.net](http://webchat.freenode.net/?channels=thre
<a
href=
"http://superfad.com/missioncontrol/"
><img
src=
"http://mrdoob.github.com/three.js/assets/projects/18_missioncontrol.png"
width=
"102"
height=
"77"
alt=
"Mission Control"
></a>
<a
href=
"http://ro.me/"
><img
src=
"http://mrdoob.github.com/three.js/assets/projects/17_rome.png"
width=
"102"
height=
"77"
alt=
"ROME"
></a>
<a
href=
"http://data-arts.appspot.com/globe"
><img
src=
"http://mrdoob.github.com/three.js/assets/projects/16_globe.png"
width=
"102"
height=
"77"
alt=
"Globe"
></a>
<a
href=
"http://lab.aerotwist.com/webgl/photoparticles/"
><img
src=
"http://mrdoob.github.com/three.js/assets/projects/15_photoparticles.png"
width=
"102"
height=
"77"
alt=
"Photoparticles"
></a>
<a
href=
"http://plumegraph.org/"
><img
src=
"http://mrdoob.github.com/three.js/assets/projects/14_plumegraph.png"
width=
"102"
height=
"77"
alt=
"Plumegraph"
></a>
<a
href=
"http://helloracer.com/webgl/"
><img
src=
"http://mrdoob.github.com/three.js/assets/projects/13_helloracer.png"
width=
"102"
height=
"77"
alt=
"HelloRacer"
></a>
<a
href=
"http://www.omiod.com/games/fastkat.php"
><img
src=
"http://mrdoob.github.com/three.js/assets/projects/12_fastkat.png"
width=
"102"
height=
"77"
alt=
"FastKat"
></a>
<a
href=
"http://mrdoob.com/projects/voxels/"
><img
src=
"http://mrdoob.github.com/three.js/assets/projects/10_voxels.png"
width=
"102"
height=
"77"
alt=
"Voxels"
></a>
...
...
This diff is collapsed.
Click to expand it.
build/Three.js
View file @
a4088b89
This diff is collapsed.
Click to expand it.
build/custom/ThreeCanvas.js
View file @
a4088b89
// ThreeCanvas.js - http://github.com/mrdoob/three.js
'
use strict
'
;
var
THREE
=
THREE
||
{
REVISION
:
"
48
dev
"
};
if
(
!
self
.
Int32Array
)
self
.
Int32Array
=
Array
,
self
.
Float32Array
=
Array
;
'
use strict
'
;
var
THREE
=
THREE
||
{
REVISION
:
"
48
"
};
if
(
!
self
.
Int32Array
)
self
.
Int32Array
=
Array
,
self
.
Float32Array
=
Array
;
(
function
(){
for
(
var
a
=
0
,
b
=
[
"
ms
"
,
"
moz
"
,
"
webkit
"
,
"
o
"
],
c
=
0
;
c
<
b
.
length
&&!
window
.
requestAnimationFrame
;
++
c
)
window
.
requestAnimationFrame
=
window
[
b
[
c
]
+
"
RequestAnimationFrame
"
],
window
.
cancelAnimationFrame
=
window
[
b
[
c
]
+
"
CancelAnimationFrame
"
]
||
window
[
b
[
c
]
+
"
CancelRequestAnimationFrame
"
];
if
(
!
window
.
requestAnimationFrame
)
window
.
requestAnimationFrame
=
function
(
b
){
var
c
=
(
new
Date
).
getTime
(),
f
=
Math
.
max
(
0
,
16
-
(
c
-
a
)),
g
=
window
.
setTimeout
(
function
(){
b
(
c
+
f
)},
f
);
a
=
c
+
f
;
return
g
};
if
(
!
window
.
cancelAnimationFrame
)
window
.
cancelAnimationFrame
=
function
(
a
){
clearTimeout
(
a
)}})();
THREE
.
Color
=
function
(
a
){
void
0
!==
a
&&
this
.
setHex
(
a
);
return
this
};
THREE
.
Color
.
prototype
=
{
constructor
:
THREE
.
Color
,
r
:
1
,
g
:
1
,
b
:
1
,
copy
:
function
(
a
){
this
.
r
=
a
.
r
;
this
.
g
=
a
.
g
;
this
.
b
=
a
.
b
;
return
this
},
copyGammaToLinear
:
function
(
a
){
this
.
r
=
a
.
r
*
a
.
r
;
this
.
g
=
a
.
g
*
a
.
g
;
this
.
b
=
a
.
b
*
a
.
b
;
return
this
},
copyLinearToGamma
:
function
(
a
){
this
.
r
=
Math
.
sqrt
(
a
.
r
);
this
.
g
=
Math
.
sqrt
(
a
.
g
);
this
.
b
=
Math
.
sqrt
(
a
.
b
);
return
this
},
convertGammaToLinear
:
function
(){
var
a
=
this
.
r
,
b
=
this
.
g
,
c
=
this
.
b
;
this
.
r
=
a
*
a
;
this
.
g
=
b
*
b
;
this
.
b
=
c
*
c
;
return
this
},
convertLinearToGamma
:
function
(){
this
.
r
=
Math
.
sqrt
(
this
.
r
);
this
.
g
=
Math
.
sqrt
(
this
.
g
);
...
...
This diff is collapsed.
Click to expand it.
build/custom/ThreeDOM.js
View file @
a4088b89
// ThreeDOM.js - http://github.com/mrdoob/three.js
'
use strict
'
;
var
THREE
=
THREE
||
{
REVISION
:
"
48
dev
"
};
if
(
!
self
.
Int32Array
)
self
.
Int32Array
=
Array
,
self
.
Float32Array
=
Array
;
'
use strict
'
;
var
THREE
=
THREE
||
{
REVISION
:
"
48
"
};
if
(
!
self
.
Int32Array
)
self
.
Int32Array
=
Array
,
self
.
Float32Array
=
Array
;
(
function
(){
for
(
var
a
=
0
,
b
=
[
"
ms
"
,
"
moz
"
,
"
webkit
"
,
"
o
"
],
c
=
0
;
c
<
b
.
length
&&!
window
.
requestAnimationFrame
;
++
c
)
window
.
requestAnimationFrame
=
window
[
b
[
c
]
+
"
RequestAnimationFrame
"
],
window
.
cancelAnimationFrame
=
window
[
b
[
c
]
+
"
CancelAnimationFrame
"
]
||
window
[
b
[
c
]
+
"
CancelRequestAnimationFrame
"
];
if
(
!
window
.
requestAnimationFrame
)
window
.
requestAnimationFrame
=
function
(
b
){
var
c
=
(
new
Date
).
getTime
(),
f
=
Math
.
max
(
0
,
16
-
(
c
-
a
)),
g
=
window
.
setTimeout
(
function
(){
b
(
c
+
f
)},
f
);
a
=
c
+
f
;
return
g
};
if
(
!
window
.
cancelAnimationFrame
)
window
.
cancelAnimationFrame
=
function
(
a
){
clearTimeout
(
a
)}})();
THREE
.
Color
=
function
(
a
){
void
0
!==
a
&&
this
.
setHex
(
a
);
return
this
};
THREE
.
Color
.
prototype
=
{
constructor
:
THREE
.
Color
,
r
:
1
,
g
:
1
,
b
:
1
,
copy
:
function
(
a
){
this
.
r
=
a
.
r
;
this
.
g
=
a
.
g
;
this
.
b
=
a
.
b
;
return
this
},
copyGammaToLinear
:
function
(
a
){
this
.
r
=
a
.
r
*
a
.
r
;
this
.
g
=
a
.
g
*
a
.
g
;
this
.
b
=
a
.
b
*
a
.
b
;
return
this
},
copyLinearToGamma
:
function
(
a
){
this
.
r
=
Math
.
sqrt
(
a
.
r
);
this
.
g
=
Math
.
sqrt
(
a
.
g
);
this
.
b
=
Math
.
sqrt
(
a
.
b
);
return
this
},
convertGammaToLinear
:
function
(){
var
a
=
this
.
r
,
b
=
this
.
g
,
c
=
this
.
b
;
this
.
r
=
a
*
a
;
this
.
g
=
b
*
b
;
this
.
b
=
c
*
c
;
return
this
},
convertLinearToGamma
:
function
(){
this
.
r
=
Math
.
sqrt
(
this
.
r
);
this
.
g
=
Math
.
sqrt
(
this
.
g
);
...
...
This diff is collapsed.
Click to expand it.
build/custom/ThreeExtras.js
View file @
a4088b89
This diff is collapsed.
Click to expand it.
build/custom/ThreeSVG.js
View file @
a4088b89
// ThreeSVG.js - http://github.com/mrdoob/three.js
'
use strict
'
;
var
THREE
=
THREE
||
{
REVISION
:
"
48
dev
"
};
if
(
!
self
.
Int32Array
)
self
.
Int32Array
=
Array
,
self
.
Float32Array
=
Array
;
'
use strict
'
;
var
THREE
=
THREE
||
{
REVISION
:
"
48
"
};
if
(
!
self
.
Int32Array
)
self
.
Int32Array
=
Array
,
self
.
Float32Array
=
Array
;
(
function
(){
for
(
var
a
=
0
,
b
=
[
"
ms
"
,
"
moz
"
,
"
webkit
"
,
"
o
"
],
c
=
0
;
c
<
b
.
length
&&!
window
.
requestAnimationFrame
;
++
c
)
window
.
requestAnimationFrame
=
window
[
b
[
c
]
+
"
RequestAnimationFrame
"
],
window
.
cancelAnimationFrame
=
window
[
b
[
c
]
+
"
CancelAnimationFrame
"
]
||
window
[
b
[
c
]
+
"
CancelRequestAnimationFrame
"
];
if
(
!
window
.
requestAnimationFrame
)
window
.
requestAnimationFrame
=
function
(
b
){
var
c
=
(
new
Date
).
getTime
(),
f
=
Math
.
max
(
0
,
16
-
(
c
-
a
)),
g
=
window
.
setTimeout
(
function
(){
b
(
c
+
f
)},
f
);
a
=
c
+
f
;
return
g
};
if
(
!
window
.
cancelAnimationFrame
)
window
.
cancelAnimationFrame
=
function
(
a
){
clearTimeout
(
a
)}})();
THREE
.
Color
=
function
(
a
){
void
0
!==
a
&&
this
.
setHex
(
a
);
return
this
};
THREE
.
Color
.
prototype
=
{
constructor
:
THREE
.
Color
,
r
:
1
,
g
:
1
,
b
:
1
,
copy
:
function
(
a
){
this
.
r
=
a
.
r
;
this
.
g
=
a
.
g
;
this
.
b
=
a
.
b
;
return
this
},
copyGammaToLinear
:
function
(
a
){
this
.
r
=
a
.
r
*
a
.
r
;
this
.
g
=
a
.
g
*
a
.
g
;
this
.
b
=
a
.
b
*
a
.
b
;
return
this
},
copyLinearToGamma
:
function
(
a
){
this
.
r
=
Math
.
sqrt
(
a
.
r
);
this
.
g
=
Math
.
sqrt
(
a
.
g
);
this
.
b
=
Math
.
sqrt
(
a
.
b
);
return
this
},
convertGammaToLinear
:
function
(){
var
a
=
this
.
r
,
b
=
this
.
g
,
c
=
this
.
b
;
this
.
r
=
a
*
a
;
this
.
g
=
b
*
b
;
this
.
b
=
c
*
c
;
return
this
},
convertLinearToGamma
:
function
(){
this
.
r
=
Math
.
sqrt
(
this
.
r
);
this
.
g
=
Math
.
sqrt
(
this
.
g
);
...
...
This diff is collapsed.
Click to expand it.
build/custom/ThreeWebGL.js
View file @
a4088b89
// ThreeWebGL.js - http://github.com/mrdoob/three.js
'use strict';var THREE=THREE||{REVISION:"48
dev
"};if(!self.Int32Array)self.Int32Array=Array,self.Float32Array=Array;
'use strict';var THREE=THREE||{REVISION:"48"};if(!self.Int32Array)self.Int32Array=Array,self.Float32Array=Array;
(function(){for(var a=0,b=["ms","moz","webkit","o"],c=0;c<b.length&&!window.requestAnimationFrame;++c)window.requestAnimationFrame=window[b[c]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[b[c]+"CancelAnimationFrame"]||window[b[c]+"CancelRequestAnimationFrame"];if(!window.requestAnimationFrame)window.requestAnimationFrame=function(b){var c=(new Date).getTime(),g=Math.max(0,16-(c-a)),h=window.setTimeout(function(){b(c+g)},g);a=c+g;return h};if(!window.cancelAnimationFrame)window.cancelAnimationFrame=
function(a){clearTimeout(a)}})();THREE.Color=function(a){void 0!==a&&this.setHex(a);return this};
THREE.Color.prototype={constructor:THREE.Color,r:1,g:1,b:1,copy:function(a){this.r=a.r;this.g=a.g;this.b=a.b;return this},copyGammaToLinear:function(a){this.r=a.r*a.r;this.g=a.g*a.g;this.b=a.b*a.b;return this},copyLinearToGamma:function(a){this.r=Math.sqrt(a.r);this.g=Math.sqrt(a.g);this.b=Math.sqrt(a.b);return this},convertGammaToLinear:function(){var a=this.r,b=this.g,c=this.b;this.r=a*a;this.g=b*b;this.b=c*c;return this},convertLinearToGamma:function(){this.r=Math.sqrt(this.r);this.g=Math.sqrt(this.g);
...
...
This diff is collapsed.
Click to expand it.
docs/index.html
View file @
a4088b89
...
...
@@ -102,7 +102,7 @@
<div
id=
"viewer"
></div>
<script>
var
REVISION
=
'
48
dev
'
;
var
REVISION
=
'
48
'
;
var
panel
=
document
.
getElementById
(
'
panel
'
);
var
viewer
=
document
.
getElementById
(
'
viewer
'
);
...
...
This diff is collapsed.
Click to expand it.
src/Three.js
View file @
a4088b89
...
...
@@ -2,7 +2,7 @@
* @author mr.doob / http://mrdoob.com/
*/
var
THREE
=
THREE
||
{
REVISION
:
'
48
dev
'
};
var
THREE
=
THREE
||
{
REVISION
:
'
48
'
};
if
(
!
self
.
Int32Array
)
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment