123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**
- * @author mrdoob / http://mrdoob.com/
- * @author alteredq / http://alteredqualia.com/
- * @author mikael emtinger / http://gomo.se/
- */
- THREE.Mesh = function ( geometry, material ) {
- THREE.Object3D.call( this );
- this.geometry = geometry;
- this.material = ( material !== undefined ) ? material : new THREE.MeshBasicMaterial( { color: Math.random() * 0xffffff, wireframe: true } );
- if ( this.geometry ) {
- // calc bound radius
- if ( ! this.geometry.boundingSphere ) {
- this.geometry.computeBoundingSphere();
- }
- this.boundRadius = geometry.boundingSphere.radius;
- // setup morph targets
- if( this.geometry.morphTargets.length ) {
- this.morphTargetBase = -1;
- this.morphTargetForcedOrder = [];
- this.morphTargetInfluences = [];
- this.morphTargetDictionary = {};
- for( var m = 0; m < this.geometry.morphTargets.length; m ++ ) {
- this.morphTargetInfluences.push( 0 );
- this.morphTargetDictionary[ this.geometry.morphTargets[ m ].name ] = m;
- }
- }
- }
- }
- THREE.Mesh.prototype = Object.create( THREE.Object3D.prototype );
- /*
- * Get Morph Target Index by Name
- */
- THREE.Mesh.prototype.getMorphTargetIndexByName = function( name ) {
- if ( this.morphTargetDictionary[ name ] !== undefined ) {
- return this.morphTargetDictionary[ name ];
- }
- console.log( "THREE.Mesh.getMorphTargetIndexByName: morph target " + name + " does not exist. Returning 0." );
- return 0;
- }
|