123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985 |
- /**
- * @author alteredq / http://alteredqualia.com/
- * @author mrdoob / http://mrdoob.com/
- */
- THREE.BufferGeometry = function () {
- Object.defineProperty( this, 'id', { value: THREE.GeometryIdCount ++ } );
- this.uuid = THREE.Math.generateUUID();
- this.name = '';
- this.type = 'BufferGeometry';
- this.index = null;
- this.attributes = {};
- this.morphAttributes = {};
- this.groups = [];
- this.boundingBox = null;
- this.boundingSphere = null;
- };
- THREE.BufferGeometry.prototype = {
- constructor: THREE.BufferGeometry,
- addIndex: function ( attribute ) {
- this.index = attribute;
- },
- addAttribute: function ( name, attribute ) {
- if ( attribute instanceof THREE.BufferAttribute === false && attribute instanceof THREE.InterleavedBufferAttribute === false ) {
- console.warn( 'THREE.BufferGeometry: .addAttribute() now expects ( name, attribute ).' );
- this.addAttribute( name, new THREE.BufferAttribute( arguments[ 1 ], arguments[ 2 ] ) );
- return;
- }
- if ( name === 'index' ) {
- console.warn( 'THREE.BufferGeometry.addAttribute: Use .addIndex() for index attribute.' );
- this.addIndex( attribute );
- }
- this.attributes[ name ] = attribute;
- },
- getAttribute: function ( name ) {
- return this.attributes[ name ];
- },
- removeAttribute: function ( name ) {
- delete this.attributes[ name ];
- },
- get drawcalls() {
- console.error( 'THREE.BufferGeometry: .drawcalls has been renamed to .groups.' );
- return this.groups;
- },
- get offsets() {
- console.warn( 'THREE.BufferGeometry: .offsets has been renamed to .groups.' );
- return this.groups;
- },
- addDrawCall: function ( start, count, indexOffset ) {
- if ( indexOffset !== undefined ) {
- console.warn( 'THREE.BufferGeometry: .addDrawCall() no longer supports indexOffset.' );
- }
- console.warn( 'THREE.BufferGeometry: .addDrawCall() is now .addGroup().' );
- this.addGroup( start, count );
- },
- clearDrawCalls: function () {
- console.warn( 'THREE.BufferGeometry: .clearDrawCalls() is now .clearGroups().' );
- this.clearGroups();
- },
- addGroup: function ( start, count, materialIndex ) {
- this.groups.push( {
- start: start,
- count: count,
- materialIndex: materialIndex !== undefined ? materialIndex : 0
- } );
- },
- clearGroups: function () {
- this.groups = [];
- },
- applyMatrix: function ( matrix ) {
- var position = this.attributes.position;
- if ( position !== undefined ) {
- matrix.applyToVector3Array( position.array );
- position.needsUpdate = true;
- }
- var normal = this.attributes.normal;
- if ( normal !== undefined ) {
- var normalMatrix = new THREE.Matrix3().getNormalMatrix( matrix );
- normalMatrix.applyToVector3Array( normal.array );
- normal.needsUpdate = true;
- }
- if ( this.boundingBox !== null ) {
- this.computeBoundingBox();
- }
- if ( this.boundingSphere !== null ) {
- this.computeBoundingSphere();
- }
- },
- rotateX: function () {
- // rotate geometry around world x-axis
- var m1;
- return function rotateX( angle ) {
- if ( m1 === undefined ) m1 = new THREE.Matrix4();
- m1.makeRotationX( angle );
- this.applyMatrix( m1 );
- return this;
- };
- }(),
- rotateY: function () {
- // rotate geometry around world y-axis
- var m1;
- return function rotateY( angle ) {
- if ( m1 === undefined ) m1 = new THREE.Matrix4();
- m1.makeRotationY( angle );
- this.applyMatrix( m1 );
- return this;
- };
- }(),
- rotateZ: function () {
- // rotate geometry around world z-axis
- var m1;
- return function rotateZ( angle ) {
- if ( m1 === undefined ) m1 = new THREE.Matrix4();
- m1.makeRotationZ( angle );
- this.applyMatrix( m1 );
- return this;
- };
- }(),
- translate: function () {
- // translate geometry
- var m1;
- return function translate( x, y, z ) {
- if ( m1 === undefined ) m1 = new THREE.Matrix4();
- m1.makeTranslation( x, y, z );
- this.applyMatrix( m1 );
- return this;
- };
- }(),
- scale: function () {
- // scale geometry
- var m1;
- return function scale( x, y, z ) {
- if ( m1 === undefined ) m1 = new THREE.Matrix4();
- m1.makeScale( x, y, z );
- this.applyMatrix( m1 );
- return this;
- };
- }(),
- lookAt: function () {
- var obj;
- return function lookAt( vector ) {
- if ( obj === undefined ) obj = new THREE.Object3D();
- obj.lookAt( vector );
- obj.updateMatrix();
- this.applyMatrix( obj.matrix );
- };
- }(),
- center: function () {
- this.computeBoundingBox();
- var offset = this.boundingBox.center().negate();
- this.translate( offset.x, offset.y, offset.z );
- return offset;
- },
- setFromObject: function ( object ) {
- // console.log( 'THREE.BufferGeometry.setFromObject(). Converting', object, this );
- var geometry = object.geometry;
- if ( object instanceof THREE.PointCloud || object instanceof THREE.Line ) {
- var positions = new THREE.Float32Attribute( geometry.vertices.length * 3, 3 );
- var colors = new THREE.Float32Attribute( 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 THREE.Float32Attribute( 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 instanceof THREE.Mesh ) {
- if ( geometry instanceof THREE.Geometry ) {
- this.fromGeometry( geometry );
- }
- }
- return this;
- },
- updateFromObject: function ( object ) {
- var geometry = object.geometry;
- if ( object instanceof THREE.Mesh ) {
- var direct = geometry.__directGeometry;
- 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;
- }
- if ( geometry.verticesNeedUpdate === true ) {
- var attribute = this.attributes.position;
- if ( attribute !== undefined ) {
- attribute.copyVector3sArray( geometry.vertices );
- attribute.needsUpdate = true;
- }
- geometry.verticesNeedUpdate = false;
- }
- if ( geometry.normalsNeedUpdate === true ) {
- var attribute = this.attributes.normal;
- if ( attribute !== undefined ) {
- attribute.copyVector3sArray( geometry.normals );
- attribute.needsUpdate = true;
- }
- geometry.normalsNeedUpdate = false;
- }
- if ( geometry.colorsNeedUpdate === true ) {
- var attribute = this.attributes.color;
- if ( attribute !== undefined ) {
- attribute.copyColorsArray( geometry.colors );
- attribute.needsUpdate = true;
- }
- geometry.colorsNeedUpdate = false;
- }
- if ( geometry.lineDistancesNeedUpdate ) {
- var 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 THREE.DirectGeometry().fromGeometry( geometry );
- return this.fromDirectGeometry( geometry.__directGeometry );
- },
- fromDirectGeometry: function ( geometry ) {
- var positions = new Float32Array( geometry.vertices.length * 3 );
- this.addAttribute( 'position', new THREE.BufferAttribute( positions, 3 ).copyVector3sArray( geometry.vertices ) );
- if ( geometry.normals.length > 0 ) {
- var normals = new Float32Array( geometry.normals.length * 3 );
- this.addAttribute( 'normal', new THREE.BufferAttribute( normals, 3 ).copyVector3sArray( geometry.normals ) );
- }
- if ( geometry.colors.length > 0 ) {
- var colors = new Float32Array( geometry.colors.length * 3 );
- this.addAttribute( 'color', new THREE.BufferAttribute( colors, 3 ).copyColorsArray( geometry.colors ) );
- }
- if ( geometry.uvs.length > 0 ) {
- var uvs = new Float32Array( geometry.uvs.length * 2 );
- this.addAttribute( 'uv', new THREE.BufferAttribute( uvs, 2 ).copyVector2sArray( geometry.uvs ) );
- }
- if ( geometry.uvs2.length > 0 ) {
- var uvs2 = new Float32Array( geometry.uvs2.length * 2 );
- this.addAttribute( 'uv2', new THREE.BufferAttribute( uvs2, 2 ).copyVector2sArray( geometry.uvs2 ) );
- }
- if ( geometry.indices.length > 0 ) {
- var TypeArray = geometry.vertices.length > 65535 ? Uint32Array : Uint16Array;
- var indices = new TypeArray( geometry.indices.length * 3 );
- this.addIndex( new THREE.BufferAttribute( indices, 1 ).copyIndicesArray( geometry.indices ) );
- }
- // 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 THREE.Float32Attribute( morphTarget.length * 3, 3 );
- array.push( attribute.copyVector3sArray( morphTarget ) );
- }
- this.morphAttributes[ name ] = array;
- }
- // skinning
- if ( geometry.skinIndices.length > 0 ) {
- var skinIndices = new THREE.Float32Attribute( geometry.skinIndices.length * 4, 4 );
- this.addAttribute( 'skinIndex', skinIndices.copyVector4sArray( geometry.skinIndices ) );
- }
- if ( geometry.skinWeights.length > 0 ) {
- var skinWeights = new THREE.Float32Attribute( 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 () {
- var vector = new THREE.Vector3();
- return function () {
- if ( this.boundingBox === null ) {
- this.boundingBox = new THREE.Box3();
- }
- var positions = this.attributes.position.array;
- if ( positions ) {
- var bb = this.boundingBox;
- bb.makeEmpty();
- for ( var i = 0, il = positions.length; i < il; i += 3 ) {
- vector.fromArray( positions, i );
- bb.expandByPoint( vector );
- }
- }
- if ( positions === undefined || positions.length === 0 ) {
- this.boundingBox.min.set( 0, 0, 0 );
- this.boundingBox.max.set( 0, 0, 0 );
- }
- 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 () {
- var box = new THREE.Box3();
- var vector = new THREE.Vector3();
- return function () {
- if ( this.boundingSphere === null ) {
- this.boundingSphere = new THREE.Sphere();
- }
- var positions = this.attributes.position.array;
- if ( positions ) {
- box.makeEmpty();
- var center = this.boundingSphere.center;
- for ( var i = 0, il = positions.length; i < il; i += 3 ) {
- vector.fromArray( positions, i );
- box.expandByPoint( vector );
- }
- box.center( center );
- // hoping 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 = positions.length; i < il; i += 3 ) {
- vector.fromArray( positions, i );
- 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;
- var groups = this.groups;
- if ( attributes.position ) {
- var positions = attributes.position.array;
- if ( attributes.normal === undefined ) {
- this.addAttribute( 'normal', new THREE.BufferAttribute( new Float32Array( positions.length ), 3 ) );
- } else {
- // reset existing normals to zero
- var normals = attributes.normal.array;
- for ( var i = 0, il = normals.length; i < il; i ++ ) {
- normals[ i ] = 0;
- }
- }
- var normals = attributes.normal.array;
- var vA, vB, vC,
- pA = new THREE.Vector3(),
- pB = new THREE.Vector3(),
- pC = new THREE.Vector3(),
- cb = new THREE.Vector3(),
- ab = new THREE.Vector3();
- // indexed elements
- if ( index ) {
- var indices = index.array;
- if ( groups.length === 0 ) {
- this.addGroup( 0, indices.length );
- }
- for ( var j = 0, jl = groups.length; j < jl; ++ j ) {
- var group = groups[ j ];
- var start = group.start;
- var count = group.count;
- for ( var i = start, il = start + 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;
- }
- },
- computeTangents: function () {
- console.warn( 'THREE.BufferGeometry: .computeTangents() has been removed.' );
- },
- computeOffsets: function ( size ) {
- console.warn( 'THREE.BufferGeometry: .computeOffsets() has been removed.')
- },
- merge: function ( geometry, offset ) {
- if ( geometry instanceof THREE.BufferGeometry === false ) {
- console.error( 'THREE.BufferGeometry.merge(): geometry not an instance of THREE.BufferGeometry.', geometry );
- return;
- }
- if ( offset === undefined ) offset = 0;
- 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 attributeSize = attribute2.itemSize;
- for ( var i = 0, j = attributeSize * offset; i < attributeArray2.length; i ++, j ++ ) {
- attributeArray1[ j ] = attributeArray2[ i ];
- }
- }
- return this;
- },
- normalizeNormals: function () {
- var normals = this.attributes.normal.array;
- var x, y, z, n;
- for ( var i = 0, il = normals.length; i < il; i += 3 ) {
- x = normals[ i ];
- y = normals[ i + 1 ];
- z = normals[ i + 2 ];
- n = 1.0 / Math.sqrt( x * x + y * y + z * z );
- normals[ i ] *= n;
- normals[ i + 1 ] *= n;
- normals[ i + 2 ] *= n;
- }
- },
- toJSON: function () {
- var data = {
- metadata: {
- version: 4.4,
- type: 'BufferGeometry',
- generator: 'BufferGeometry.toJSON'
- }
- };
- // standard BufferGeometry serialization
- data.uuid = this.uuid;
- data.type = this.type;
- if ( this.name !== '' ) data.name = this.name;
- 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 ) {
- var array = Array.prototype.slice.call( index.array );
- data.data.index = {
- type: index.array.constructor.name,
- array: array
- };
- }
- var attributes = this.attributes;
- for ( var key in attributes ) {
- var attribute = attributes[ key ];
- var array = Array.prototype.slice.call( attribute.array );
- data.data.attributes[ key ] = {
- itemSize: attribute.itemSize,
- type: attribute.array.constructor.name,
- array: array
- };
- }
- 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 () {
- return new this.constructor().copy( this );
- },
- copy: function ( source ) {
- var index = source.index;
- if ( index !== null ) {
- this.addIndex( index.clone() );
- }
- var attributes = source.attributes;
- for ( var name in attributes ) {
- var attribute = attributes[ name ];
- this.addAttribute( name, attribute.clone() );
- }
- var groups = source.groups;
- for ( var i = 0, l = groups.length; i < l; i ++ ) {
- var group = groups[ i ];
- this.addGroup( group.start, group.count );
- }
- return this;
- },
- dispose: function () {
- this.dispatchEvent( { type: 'dispose' } );
- }
- };
- THREE.EventDispatcher.prototype.apply( THREE.BufferGeometry.prototype );
- THREE.BufferGeometry.MaxIndex = 65535;
|