/** * @author mrdoob / http://mrdoob.com/ */ THREE.Group = function () { THREE.Object3D.call( this ); this.type = 'Group'; }; THREE.Group.prototype = Object.create( THREE.Object3D.prototype ); THREE.Group.prototype.constructor = THREE.Group;