提交 2cde08bc 编写于 作者: C Charles Covey-Brandt

Allow lazy loading of the Box3 constructor, so that webpack can load three js...

Allow lazy loading of the Box3 constructor, so that webpack can load three js source files directly instead of requiring all of the THREE.
上级 6457d0a7
......@@ -28,10 +28,12 @@ Sphere.prototype = {
setFromPoints: function () {
var box = new Box3();
var box;
return function setFromPoints( points, optionalCenter ) {
box = box || new Box3();
var center = this.center;
if ( optionalCenter !== undefined ) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册