12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223 |
- import { Vector3 } from '../math/Vector3.js';
- import { Box3 } from '../math/Box3.js';
- import { EventDispatcher } from './EventDispatcher.js';
- import { BufferAttribute, Float32BufferAttribute, Uint16BufferAttribute, Uint32BufferAttribute } from './BufferAttribute.js';
- import { Sphere } from '../math/Sphere.js';
- import { DirectGeometry } from './DirectGeometry.js';
- import { Object3D } from './Object3D.js';
- import { Matrix4 } from '../math/Matrix4.js';
- import { Matrix3 } from '../math/Matrix3.js';
- import { _Math } from '../math/Math.js';
- import { arrayMax } from '../utils.js';
- /**
- * @author alteredq / http://alteredqualia.com/
- * @author mrdoob / http://mrdoob.com/
- */
- var _bufferGeometryId = 1; // BufferGeometry uses odd numbers as Id
- var _m1 = new Matrix4();
- var _obj = new Object3D();
- var _offset = new Vector3();
- var _box = new Box3();
- var _boxMorphTargets = new Box3();
- var _vector = new Vector3();
- function BufferGeometry() {
- Object.defineProperty( this, 'id', { value: _bufferGeometryId += 2 } );
- this.uuid = _Math.generateUUID();
- this.name = '';
- this.type = 'BufferGeometry';
- this.index = null;
- this.attributes = {};
- this.morphAttributes = {};
- this.groups = [];
- this.boundingBox = null;
- this.boundingSphere = null;
- this.drawRange = { start: 0, count: Infinity };
- this.userData = {};
- }
- BufferGeometry.prototype = Object.assign( Object.create( EventDispatcher.prototype ), {
- constructor: BufferGeometry,
- isBufferGeometry: true,
- getIndex: function () {
- return this.index;
- },
- setIndex: function ( index ) {
- if ( Array.isArray( index ) ) {
- this.index = new ( arrayMax( index ) > 65535 ? Uint32BufferAttribute : Uint16BufferAttribute )( index, 1 );
- } else {
- this.index = index;
- }
- },
- addAttribute: function ( name, attribute ) {
- if ( ! ( attribute && attribute.isBufferAttribute ) && ! ( attribute && attribute.isInterleavedBufferAttribute ) ) {
- console.warn( 'THREE.BufferGeometry: .addAttribute() now expects ( name, attribute ).' );
- return this.addAttribute( name, new BufferAttribute( arguments[ 1 ], arguments[ 2 ] ) );
- }
- if ( name === 'index' ) {
- console.warn( 'THREE.BufferGeometry.addAttribute: Use .setIndex() for index attribute.' );
- this.setIndex( attribute );
- return this;
- }
- return this.setAttribute( name, attribute );
- },
- getAttribute: function ( name ) {
- return this.attributes[ name ];
- },
- setAttribute: function ( name, attribute ) {
- this.attributes[ name ] = attribute;
- return this;
- },
- removeAttribute: function ( name ) {
- delete this.attributes[ name ];
- return this;
- },
- addGroup: function ( start, count, materialIndex ) {
- this.groups.push( {
- start: start,
- count: count,
- materialIndex: materialIndex !== undefined ? materialIndex : 0
- } );
- },
- clearGroups: function () {
- this.groups = [];
- },
- setDrawRange: function ( start, count ) {
- this.drawRange.start = start;
- this.drawRange.count = count;
- },
- applyMatrix: function ( matrix ) {
- var position = this.attributes.position;
- if ( position !== undefined ) {
- matrix.applyToBufferAttribute( position );
- position.needsUpdate = true;
- }
- var normal = this.attributes.normal;
- if ( normal !== undefined ) {
- var normalMatrix = new Matrix3().getNormalMatrix( matrix );
- normalMatrix.applyToBufferAttribute( normal );
- normal.needsUpdate = true;
- }
- var tangent = this.attributes.tangent;
- if ( tangent !== undefined ) {
- var normalMatrix = new Matrix3().getNormalMatrix( matrix );
- // Tangent is vec4, but the '.w' component is a sign value (+1/-1).
- normalMatrix.applyToBufferAttribute( tangent );
- tangent.needsUpdate = true;
- }
- if ( this.boundingBox !== null ) {
- this.computeBoundingBox();
- }
- if ( this.boundingSphere !== null ) {
- this.computeBoundingSphere();
- }
- return this;
- },
- rotateX: function ( angle ) {
- // rotate geometry around world x-axis
- _m1.makeRotationX( angle );
- this.applyMatrix( _m1 );
- return this;
- },
- rotateY: function ( angle ) {
- // rotate geometry around world y-axis
- _m1.makeRotationY( angle );
- this.applyMatrix( _m1 );
- return this;
- },
- rotateZ: function ( angle ) {
- // rotate geometry around world z-axis
- _m1.makeRotationZ( angle );
- this.applyMatrix( _m1 );
- return this;
- },
- translate: function ( x, y, z ) {
- // translate geometry
- _m1.makeTranslation( x, y, z );
- this.applyMatrix( _m1 );
- return this;
- },
- scale: function ( x, y, z ) {
- // scale geometry
- _m1.makeScale( x, y, z );
- this.applyMatrix( _m1 );
- return this;
- },
- lookAt: function ( vector ) {
- _obj.lookAt( vector );
- _obj.updateMatrix();
- this.applyMatrix( _obj.matrix );
- return this;
- },
- center: function () {
- this.computeBoundingBox();
- this.boundingBox.getCenter( _offset ).negate();
- this.translate( _offset.x, _offset.y, _offset.z );
- return this;
- },
- setFromObject: function ( object ) {
- // console.log( 'THREE.BufferGeometry.setFromObject(). Converting', object, this );
- var geometry = object.geometry;
- if ( object.isPoints || object.isLine ) {
- var positions = new Float32BufferAttribute( geometry.vertices.length * 3, 3 );
- var colors = new Float32BufferAttribute( geometry.colors.length * 3, 3 );
- this.addAttribute( 'position', positions.copyVector3sArray( geometry.vertices ) );
- this.addAttribute( 'color', colors.copyColorsArray( geometry.colors ) );
- if ( geometry.lineDistances && geometry.lineDistances.length === geometry.vertices.length ) {
- var lineDistances = new Float32BufferAttribute( geometry.lineDistances.length, 1 );
- this.addAttribute( 'lineDistance', lineDistances.copyArray( geometry.lineDistances ) );
- }
- if ( geometry.boundingSphere !== null ) {
- this.boundingSphere = geometry.boundingSphere.clone();
- }
- if ( geometry.boundingBox !== null ) {
- this.boundingBox = geometry.boundingBox.clone();
- }
- } else if ( object.isMesh ) {
- if ( geometry && geometry.isGeometry ) {
- this.fromGeometry( geometry );
- }
- }
- return this;
- },
- setFromPoints: function ( points ) {
- var position = [];
- for ( var i = 0, l = points.length; i < l; i ++ ) {
- var point = points[ i ];
- position.push( point.x, point.y, point.z || 0 );
- }
- this.addAttribute( 'position', new Float32BufferAttribute( position, 3 ) );
- return this;
- },
- updateFromObject: function ( object ) {
- var geometry = object.geometry;
- if ( object.isMesh ) {
- var direct = geometry.__directGeometry;
- if ( geometry.elementsNeedUpdate === true ) {
- direct = undefined;
- geometry.elementsNeedUpdate = false;
- }
- if ( direct === undefined ) {
- return this.fromGeometry( geometry );
- }
- direct.verticesNeedUpdate = geometry.verticesNeedUpdate;
- direct.normalsNeedUpdate = geometry.normalsNeedUpdate;
- direct.colorsNeedUpdate = geometry.colorsNeedUpdate;
- direct.uvsNeedUpdate = geometry.uvsNeedUpdate;
- direct.groupsNeedUpdate = geometry.groupsNeedUpdate;
- geometry.verticesNeedUpdate = false;
- geometry.normalsNeedUpdate = false;
- geometry.colorsNeedUpdate = false;
- geometry.uvsNeedUpdate = false;
- geometry.groupsNeedUpdate = false;
- geometry = direct;
- }
- var attribute;
- if ( geometry.verticesNeedUpdate === true ) {
- attribute = this.attributes.position;
- if ( attribute !== undefined ) {
- attribute.copyVector3sArray( geometry.vertices );
- attribute.needsUpdate = true;
- }
- geometry.verticesNeedUpdate = false;
- }
- if ( geometry.normalsNeedUpdate === true ) {
- attribute = this.attributes.normal;
- if ( attribute !== undefined ) {
- attribute.copyVector3sArray( geometry.normals );
- attribute.needsUpdate = true;
- }
- geometry.normalsNeedUpdate = false;
- }
- if ( geometry.colorsNeedUpdate === true ) {
- attribute = this.attributes.color;
- if ( attribute !== undefined ) {
- attribute.copyColorsArray( geometry.colors );
- attribute.needsUpdate = true;
- }
- geometry.colorsNeedUpdate = false;
- }
- if ( geometry.uvsNeedUpdate ) {
- attribute = this.attributes.uv;
- if ( attribute !== undefined ) {
- attribute.copyVector2sArray( geometry.uvs );
- attribute.needsUpdate = true;
- }
- geometry.uvsNeedUpdate = false;
- }
- if ( geometry.lineDistancesNeedUpdate ) {
- attribute = this.attributes.lineDistance;
- if ( attribute !== undefined ) {
- attribute.copyArray( geometry.lineDistances );
- attribute.needsUpdate = true;
- }
- geometry.lineDistancesNeedUpdate = false;
- }
- if ( geometry.groupsNeedUpdate ) {
- geometry.computeGroups( object.geometry );
- this.groups = geometry.groups;
- geometry.groupsNeedUpdate = false;
- }
- return this;
- },
- fromGeometry: function ( geometry ) {
- geometry.__directGeometry = new DirectGeometry().fromGeometry( geometry );
- return this.fromDirectGeometry( geometry.__directGeometry );
- },
- fromDirectGeometry: function ( geometry ) {
- var positions = new Float32Array( geometry.vertices.length * 3 );
- this.addAttribute( 'position', new BufferAttribute( positions, 3 ).copyVector3sArray( geometry.vertices ) );
- if ( geometry.normals.length > 0 ) {
- var normals = new Float32Array( geometry.normals.length * 3 );
- this.addAttribute( 'normal', new BufferAttribute( normals, 3 ).copyVector3sArray( geometry.normals ) );
- }
- if ( geometry.colors.length > 0 ) {
- var colors = new Float32Array( geometry.colors.length * 3 );
- this.addAttribute( 'color', new BufferAttribute( colors, 3 ).copyColorsArray( geometry.colors ) );
- }
- if ( geometry.uvs.length > 0 ) {
- var uvs = new Float32Array( geometry.uvs.length * 2 );
- this.addAttribute( 'uv', new BufferAttribute( uvs, 2 ).copyVector2sArray( geometry.uvs ) );
- }
- if ( geometry.uvs2.length > 0 ) {
- var uvs2 = new Float32Array( geometry.uvs2.length * 2 );
- this.addAttribute( 'uv2', new BufferAttribute( uvs2, 2 ).copyVector2sArray( geometry.uvs2 ) );
- }
- // groups
- this.groups = geometry.groups;
- // morphs
- for ( var name in geometry.morphTargets ) {
- var array = [];
- var morphTargets = geometry.morphTargets[ name ];
- for ( var i = 0, l = morphTargets.length; i < l; i ++ ) {
- var morphTarget = morphTargets[ i ];
- var attribute = new Float32BufferAttribute( morphTarget.data.length * 3, 3 );
- attribute.name = morphTarget.name;
- array.push( attribute.copyVector3sArray( morphTarget.data ) );
- }
- this.morphAttributes[ name ] = array;
- }
- // skinning
- if ( geometry.skinIndices.length > 0 ) {
- var skinIndices = new Float32BufferAttribute( geometry.skinIndices.length * 4, 4 );
- this.addAttribute( 'skinIndex', skinIndices.copyVector4sArray( geometry.skinIndices ) );
- }
- if ( geometry.skinWeights.length > 0 ) {
- var skinWeights = new Float32BufferAttribute( geometry.skinWeights.length * 4, 4 );
- this.addAttribute( 'skinWeight', skinWeights.copyVector4sArray( geometry.skinWeights ) );
- }
- //
- if ( geometry.boundingSphere !== null ) {
- this.boundingSphere = geometry.boundingSphere.clone();
- }
- if ( geometry.boundingBox !== null ) {
- this.boundingBox = geometry.boundingBox.clone();
- }
- return this;
- },
- computeBoundingBox: function () {
- if ( this.boundingBox === null ) {
- this.boundingBox = new Box3();
- }
- var position = this.attributes.position;
- var morphAttributesPosition = this.morphAttributes.position;
- if ( position !== undefined ) {
- this.boundingBox.setFromBufferAttribute( position );
- // process morph attributes if present
- if ( morphAttributesPosition ) {
- for ( var i = 0, il = morphAttributesPosition.length; i < il; i ++ ) {
- var morphAttribute = morphAttributesPosition[ i ];
- _box.setFromBufferAttribute( morphAttribute );
- this.boundingBox.expandByPoint( _box.min );
- this.boundingBox.expandByPoint( _box.max );
- }
- }
- } else {
- this.boundingBox.makeEmpty();
- }
- if ( isNaN( this.boundingBox.min.x ) || isNaN( this.boundingBox.min.y ) || isNaN( this.boundingBox.min.z ) ) {
- console.error( 'THREE.BufferGeometry.computeBoundingBox: Computed min/max have NaN values. The "position" attribute is likely to have NaN values.', this );
- }
- },
- computeBoundingSphere: function () {
- if ( this.boundingSphere === null ) {
- this.boundingSphere = new Sphere();
- }
- var position = this.attributes.position;
- var morphAttributesPosition = this.morphAttributes.position;
- if ( position ) {
- // first, find the center of the bounding sphere
- var center = this.boundingSphere.center;
- _box.setFromBufferAttribute( position );
- // process morph attributes if present
- if ( morphAttributesPosition ) {
- for ( var i = 0, il = morphAttributesPosition.length; i < il; i ++ ) {
- var morphAttribute = morphAttributesPosition[ i ];
- _boxMorphTargets.setFromBufferAttribute( morphAttribute );
- _box.expandByPoint( _boxMorphTargets.min );
- _box.expandByPoint( _boxMorphTargets.max );
- }
- }
- _box.getCenter( center );
- // second, try to find a boundingSphere with a radius smaller than the
- // boundingSphere of the boundingBox: sqrt(3) smaller in the best case
- var maxRadiusSq = 0;
- for ( var i = 0, il = position.count; i < il; i ++ ) {
- _vector.fromBufferAttribute( position, i );
- maxRadiusSq = Math.max( maxRadiusSq, center.distanceToSquared( _vector ) );
- }
- // process morph attributes if present
- if ( morphAttributesPosition ) {
- for ( var i = 0, il = morphAttributesPosition.length; i < il; i ++ ) {
- var morphAttribute = morphAttributesPosition[ i ];
- for ( var j = 0, jl = morphAttribute.count; j < jl; j ++ ) {
- _vector.fromBufferAttribute( morphAttribute, j );
- maxRadiusSq = Math.max( maxRadiusSq, center.distanceToSquared( _vector ) );
- }
- }
- }
- this.boundingSphere.radius = Math.sqrt( maxRadiusSq );
- if ( isNaN( this.boundingSphere.radius ) ) {
- console.error( 'THREE.BufferGeometry.computeBoundingSphere(): Computed radius is NaN. The "position" attribute is likely to have NaN values.', this );
- }
- }
- },
- computeFaceNormals: function () {
- // backwards compatibility
- },
- computeVertexNormals: function () {
- var index = this.index;
- var attributes = this.attributes;
- if ( attributes.position ) {
- var positions = attributes.position.array;
- if ( attributes.normal === undefined ) {
- this.addAttribute( 'normal', new BufferAttribute( new Float32Array( positions.length ), 3 ) );
- } else {
- // reset existing normals to zero
- var array = attributes.normal.array;
- for ( var i = 0, il = array.length; i < il; i ++ ) {
- array[ i ] = 0;
- }
- }
- var normals = attributes.normal.array;
- var vA, vB, vC;
- var pA = new Vector3(), pB = new Vector3(), pC = new Vector3();
- var cb = new Vector3(), ab = new Vector3();
- // indexed elements
- if ( index ) {
- var indices = index.array;
- for ( var i = 0, il = index.count; i < il; i += 3 ) {
- vA = indices[ i + 0 ] * 3;
- vB = indices[ i + 1 ] * 3;
- vC = indices[ i + 2 ] * 3;
- pA.fromArray( positions, vA );
- pB.fromArray( positions, vB );
- pC.fromArray( positions, vC );
- cb.subVectors( pC, pB );
- ab.subVectors( pA, pB );
- cb.cross( ab );
- normals[ vA ] += cb.x;
- normals[ vA + 1 ] += cb.y;
- normals[ vA + 2 ] += cb.z;
- normals[ vB ] += cb.x;
- normals[ vB + 1 ] += cb.y;
- normals[ vB + 2 ] += cb.z;
- normals[ vC ] += cb.x;
- normals[ vC + 1 ] += cb.y;
- normals[ vC + 2 ] += cb.z;
- }
- } else {
- // non-indexed elements (unconnected triangle soup)
- for ( var i = 0, il = positions.length; i < il; i += 9 ) {
- pA.fromArray( positions, i );
- pB.fromArray( positions, i + 3 );
- pC.fromArray( positions, i + 6 );
- cb.subVectors( pC, pB );
- ab.subVectors( pA, pB );
- cb.cross( ab );
- normals[ i ] = cb.x;
- normals[ i + 1 ] = cb.y;
- normals[ i + 2 ] = cb.z;
- normals[ i + 3 ] = cb.x;
- normals[ i + 4 ] = cb.y;
- normals[ i + 5 ] = cb.z;
- normals[ i + 6 ] = cb.x;
- normals[ i + 7 ] = cb.y;
- normals[ i + 8 ] = cb.z;
- }
- }
- this.normalizeNormals();
- attributes.normal.needsUpdate = true;
- }
- },
- merge: function ( geometry, offset ) {
- if ( ! ( geometry && geometry.isBufferGeometry ) ) {
- console.error( 'THREE.BufferGeometry.merge(): geometry not an instance of THREE.BufferGeometry.', geometry );
- return;
- }
- if ( offset === undefined ) {
- offset = 0;
- console.warn(
- 'THREE.BufferGeometry.merge(): Overwriting original geometry, starting at offset=0. '
- + 'Use BufferGeometryUtils.mergeBufferGeometries() for lossless merge.'
- );
- }
- var attributes = this.attributes;
- for ( var key in attributes ) {
- if ( geometry.attributes[ key ] === undefined ) continue;
- var attribute1 = attributes[ key ];
- var attributeArray1 = attribute1.array;
- var attribute2 = geometry.attributes[ key ];
- var attributeArray2 = attribute2.array;
- var attributeOffset = attribute2.itemSize * offset;
- var length = Math.min( attributeArray2.length, attributeArray1.length - attributeOffset );
- for ( var i = 0, j = attributeOffset; i < length; i ++, j ++ ) {
- attributeArray1[ j ] = attributeArray2[ i ];
- }
- }
- return this;
- },
- normalizeNormals: function () {
- var normals = this.attributes.normal;
- for ( var i = 0, il = normals.count; i < il; i ++ ) {
- _vector.x = normals.getX( i );
- _vector.y = normals.getY( i );
- _vector.z = normals.getZ( i );
- _vector.normalize();
- normals.setXYZ( i, _vector.x, _vector.y, _vector.z );
- }
- },
- toNonIndexed: function () {
- function convertBufferAttribute( attribute, indices ) {
- var array = attribute.array;
- var itemSize = attribute.itemSize;
- var array2 = new array.constructor( indices.length * itemSize );
- var index = 0, index2 = 0;
- for ( var i = 0, l = indices.length; i < l; i ++ ) {
- index = indices[ i ] * itemSize;
- for ( var j = 0; j < itemSize; j ++ ) {
- array2[ index2 ++ ] = array[ index ++ ];
- }
- }
- return new BufferAttribute( array2, itemSize );
- }
- //
- if ( this.index === null ) {
- console.warn( 'THREE.BufferGeometry.toNonIndexed(): Geometry is already non-indexed.' );
- return this;
- }
- var geometry2 = new BufferGeometry();
- var indices = this.index.array;
- var attributes = this.attributes;
- // attributes
- for ( var name in attributes ) {
- var attribute = attributes[ name ];
- var newAttribute = convertBufferAttribute( attribute, indices );
- geometry2.addAttribute( name, newAttribute );
- }
- // morph attributes
- var morphAttributes = this.morphAttributes;
- for ( name in morphAttributes ) {
- var morphArray = [];
- var morphAttribute = morphAttributes[ name ]; // morphAttribute: array of Float32BufferAttributes
- for ( var i = 0, il = morphAttribute.length; i < il; i ++ ) {
- var attribute = morphAttribute[ i ];
- var newAttribute = convertBufferAttribute( attribute, indices );
- morphArray.push( newAttribute );
- }
- geometry2.morphAttributes[ name ] = morphArray;
- }
- // groups
- var groups = this.groups;
- for ( var i = 0, l = groups.length; i < l; i ++ ) {
- var group = groups[ i ];
- geometry2.addGroup( group.start, group.count, group.materialIndex );
- }
- return geometry2;
- },
- toJSON: function () {
- var data = {
- metadata: {
- version: 4.5,
- type: 'BufferGeometry',
- generator: 'BufferGeometry.toJSON'
- }
- };
- // standard BufferGeometry serialization
- data.uuid = this.uuid;
- data.type = this.type;
- if ( this.name !== '' ) data.name = this.name;
- if ( Object.keys( this.userData ).length > 0 ) data.userData = this.userData;
- if ( this.parameters !== undefined ) {
- var parameters = this.parameters;
- for ( var key in parameters ) {
- if ( parameters[ key ] !== undefined ) data[ key ] = parameters[ key ];
- }
- return data;
- }
- data.data = { attributes: {} };
- var index = this.index;
- if ( index !== null ) {
- data.data.index = {
- type: index.array.constructor.name,
- array: Array.prototype.slice.call( index.array )
- };
- }
- var attributes = this.attributes;
- for ( var key in attributes ) {
- var attribute = attributes[ key ];
- var attributeData = attribute.toJSON();
- if ( attribute.name !== '' ) attributeData.name = attribute.name;
- data.data.attributes[ key ] = attributeData;
- }
- var morphAttributes = {};
- var hasMorphAttributes = false;
- for ( var key in this.morphAttributes ) {
- var attributeArray = this.morphAttributes[ key ];
- var array = [];
- for ( var i = 0, il = attributeArray.length; i < il; i ++ ) {
- var attribute = attributeArray[ i ];
- var attributeData = attribute.toJSON();
- if ( attribute.name !== '' ) attributeData.name = attribute.name;
- array.push( attributeData );
- }
- if ( array.length > 0 ) {
- morphAttributes[ key ] = array;
- hasMorphAttributes = true;
- }
- }
- if ( hasMorphAttributes ) data.data.morphAttributes = morphAttributes;
- var groups = this.groups;
- if ( groups.length > 0 ) {
- data.data.groups = JSON.parse( JSON.stringify( groups ) );
- }
- var boundingSphere = this.boundingSphere;
- if ( boundingSphere !== null ) {
- data.data.boundingSphere = {
- center: boundingSphere.center.toArray(),
- radius: boundingSphere.radius
- };
- }
- return data;
- },
- clone: function () {
- /*
- // Handle primitives
- var parameters = this.parameters;
- if ( parameters !== undefined ) {
- var values = [];
- for ( var key in parameters ) {
- values.push( parameters[ key ] );
- }
- var geometry = Object.create( this.constructor.prototype );
- this.constructor.apply( geometry, values );
- return geometry;
- }
- return new this.constructor().copy( this );
- */
- return new BufferGeometry().copy( this );
- },
- copy: function ( source ) {
- var name, i, l;
- // reset
- this.index = null;
- this.attributes = {};
- this.morphAttributes = {};
- this.groups = [];
- this.boundingBox = null;
- this.boundingSphere = null;
- // name
- this.name = source.name;
- // index
- var index = source.index;
- if ( index !== null ) {
- this.setIndex( index.clone() );
- }
- // attributes
- var attributes = source.attributes;
- for ( name in attributes ) {
- var attribute = attributes[ name ];
- this.addAttribute( name, attribute.clone() );
- }
- // morph attributes
- var morphAttributes = source.morphAttributes;
- for ( name in morphAttributes ) {
- var array = [];
- var morphAttribute = morphAttributes[ name ]; // morphAttribute: array of Float32BufferAttributes
- for ( i = 0, l = morphAttribute.length; i < l; i ++ ) {
- array.push( morphAttribute[ i ].clone() );
- }
- this.morphAttributes[ name ] = array;
- }
- // groups
- var groups = source.groups;
- for ( i = 0, l = groups.length; i < l; i ++ ) {
- var group = groups[ i ];
- this.addGroup( group.start, group.count, group.materialIndex );
- }
- // bounding box
- var boundingBox = source.boundingBox;
- if ( boundingBox !== null ) {
- this.boundingBox = boundingBox.clone();
- }
- // bounding sphere
- var boundingSphere = source.boundingSphere;
- if ( boundingSphere !== null ) {
- this.boundingSphere = boundingSphere.clone();
- }
- // draw range
- this.drawRange.start = source.drawRange.start;
- this.drawRange.count = source.drawRange.count;
- // user data
- this.userData = source.userData;
- return this;
- },
- dispose: function () {
- this.dispatchEvent( { type: 'dispose' } );
- }
- } );
- export { BufferGeometry };
|