Group.js 284 B

12345678910111213141516171819202122
  1. import { Object3D } from '../core/Object3D';
  2. /**
  3. * @author mrdoob / http://mrdoob.com/
  4. */
  5. function Group() {
  6. Object3D.call( this );
  7. this.type = 'Group';
  8. }
  9. Group.prototype = Object.assign( Object.create( Object3D.prototype ), {
  10. constructor: Group
  11. } );
  12. export { Group };
粤ICP备19079148号