| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { BufferGeometry } from './BufferGeometry.js';
- /**
- * @author benaadams / https://twitter.com/ben_a_adams
- */
- function InstancedBufferGeometry() {
- BufferGeometry.call( this );
- this.type = 'InstancedBufferGeometry';
- this.maxInstancedCount = undefined;
- }
- InstancedBufferGeometry.prototype = Object.assign( Object.create( BufferGeometry.prototype ), {
- constructor: InstancedBufferGeometry,
- isInstancedBufferGeometry: true,
- copy: function ( source ) {
- BufferGeometry.prototype.copy.call( this, source );
- this.maxInstancedCount = source.maxInstancedCount;
- return this;
- },
- clone: function () {
- return new this.constructor().copy( this );
- }
- } );
- export { InstancedBufferGeometry };
|