Files
three.js/src/Three.js
T
Mr.doob 76e7ea3461 Added namespace to all the objects that missed it (geometries, uniforms, etc)
WebGLRenderer antialias is off by default (considering Firefox doesn't support it...)
Formatting clean up here and there
2011-04-09 12:38:39 +01:00

13 lines
166 B
JavaScript

/**
* @author mr.doob / http://mrdoob.com/
*/
var THREE = THREE || {};
if ( ! window.Int32Array ) {
window.Int32Array = Array;
window.Float32Array = Array;
}