123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- /**
- * @author mrdoob / http://mrdoob.com/
- * @author mikael emtinger / http://gomo.se/
- * @author alteredq / http://alteredqualia.com/
- * @author WestLangley / http://github.com/WestLangley
- */
- THREE.Object3D = function () {
- this.id = THREE.Object3DIdCount ++;
- this.name = '';
- this.parent = undefined;
- this.children = [];
- this.up = new THREE.Vector3( 0, 1, 0 );
- this.position = new THREE.Vector3();
- this.rotation = new THREE.Vector3();
- this.eulerOrder = THREE.Object3D.defaultEulerOrder;
- this.scale = new THREE.Vector3( 1, 1, 1 );
- this.renderDepth = null;
- this.rotationAutoUpdate = true;
- this.matrix = new THREE.Matrix4();
- this.matrixWorld = new THREE.Matrix4();
- this.matrixRotationWorld = new THREE.Matrix4();
- this.matrixAutoUpdate = true;
- this.matrixWorldNeedsUpdate = true;
- this.quaternion = new THREE.Quaternion();
- this.useQuaternion = false;
- this.visible = true;
- this.castShadow = false;
- this.receiveShadow = false;
- this.frustumCulled = true;
- this.userData = {};
- };
- THREE.Object3D.prototype = {
- constructor: THREE.Object3D,
- applyMatrix: function () {
- var m1 = new THREE.Matrix4();
- return function ( matrix ) {
- this.matrix.multiplyMatrices( matrix, this.matrix );
- this.position.getPositionFromMatrix( this.matrix );
- this.scale.getScaleFromMatrix( this.matrix );
- m1.copyRotation( this.matrix );
- if ( this.useQuaternion === true ) {
- this.quaternion.setFromRotationMatrix( m1 );
- } else {
- this.rotation.setEulerFromRotationMatrix( m1, this.eulerOrder );
- }
- }
- }(),
- translate: function () {
- var v1 = new THREE.Vector3();
- return function ( distance, axis ) {
- // axis is assumed to be normalized
- v1.copy( axis );
- if ( this.useQuaternion === true ) {
- v1.applyQuaternion( this.quaternion );
- } else {
- v1.applyEuler( this.rotation, this.eulerOrder );
- }
- v1.multiplyScalar( distance );
- this.position.add( v1 );
- return this;
- };
- }(),
- translateX: function () {
- var v1 = new THREE.Vector3( 1, 0, 0 );
- return function ( distance ) {
- return this.translate( distance, v1 );
- };
- }(),
- translateY: function () {
- var v1 = new THREE.Vector3( 0, 1, 0 );
- return function ( distance ) {
- return this.translate( distance, v1 );
- };
- }(),
- translateZ: function () {
- var v1 = new THREE.Vector3( 0, 0, 1 );
- return function ( distance ) {
- return this.translate( distance, v1 );
- };
- }(),
- localToWorld: function ( vector ) {
- return vector.applyMatrix4( this.matrixWorld );
- },
- worldToLocal: function () {
- var m1 = new THREE.Matrix4();
- return function ( vector ) {
- return vector.applyMatrix4( m1.getInverse( this.matrixWorld ) );
- };
- }(),
- lookAt: function () {
- // This routine does not support objects with rotated and/or translated parent(s)
- var m1 = new THREE.Matrix4();
- return function ( vector ) {
- m1.lookAt( vector, this.position, this.up );
- if ( this.useQuaternion === true ) {
- this.quaternion.setFromRotationMatrix( m1 );
- } else {
- this.rotation.setEulerFromRotationMatrix( m1, this.eulerOrder );
- }
- };
- }(),
- add: function ( object ) {
- if ( object === this ) {
- console.warn( 'THREE.Object3D.add: An object can\'t be added as a child of itself.' );
- return;
- }
- if ( object instanceof THREE.Object3D ) {
- if ( object.parent !== undefined ) {
- object.parent.remove( object );
- }
- object.parent = this;
- this.children.push( object );
- // add to scene
- var scene = this;
- while ( scene.parent !== undefined ) {
- scene = scene.parent;
- }
- if ( scene !== undefined && scene instanceof THREE.Scene ) {
- scene.__addObject( object );
- }
- }
- },
- remove: function ( object ) {
- var index = this.children.indexOf( object );
- if ( index !== - 1 ) {
- object.parent = undefined;
- this.children.splice( index, 1 );
- // remove from scene
- var scene = this;
- while ( scene.parent !== undefined ) {
- scene = scene.parent;
- }
- if ( scene !== undefined && scene instanceof THREE.Scene ) {
- scene.__removeObject( object );
- }
- }
- },
- traverse: function ( callback ) {
- callback( this );
- for ( var i = 0, l = this.children.length; i < l; i ++ ) {
- this.children[ i ].traverse( callback );
- }
- },
- getChildByName: function ( name, recursive ) {
- for ( var i = 0, l = this.children.length; i < l; i ++ ) {
- var child = this.children[ i ];
- if ( child.name === name ) {
- return child;
- }
- if ( recursive === true ) {
- child = child.getChildByName( name, recursive );
- if ( child !== undefined ) {
- return child;
- }
- }
- }
- return undefined;
- },
- getDescendants: function ( array ) {
- if ( array === undefined ) array = [];
- Array.prototype.push.apply( array, this.children );
- for ( var i = 0, l = this.children.length; i < l; i ++ ) {
- this.children[ i ].getDescendants( array );
- }
- return array;
- },
- updateMatrix: function () {
- // if we are not using a quaternion directly, convert Euler rotation to this.quaternion.
- if ( this.useQuaternion === false ) {
- this.quaternion.setFromEuler( this.rotation, this.eulerOrder );
- }
-
- this.matrix.compose( this.position, this.quaternion, this.scale );
- this.matrixWorldNeedsUpdate = true;
- },
- updateMatrixWorld: function ( force ) {
- if ( this.matrixAutoUpdate === true ) this.updateMatrix();
- if ( this.matrixWorldNeedsUpdate === true || force === true ) {
- if ( this.parent === undefined ) {
- this.matrixWorld.copy( this.matrix );
- } else {
- this.matrixWorld.multiplyMatrices( this.parent.matrixWorld, this.matrix );
- }
- this.matrixWorldNeedsUpdate = false;
- force = true;
- }
- // update children
- for ( var i = 0, l = this.children.length; i < l; i ++ ) {
- this.children[ i ].updateMatrixWorld( force );
- }
- },
- clone: function ( object ) {
- if ( object === undefined ) object = new THREE.Object3D();
- object.name = this.name;
- object.up.copy( this.up );
- object.position.copy( this.position );
- if ( object.rotation instanceof THREE.Vector3 ) object.rotation.copy( this.rotation ); // because of Sprite madness
- object.eulerOrder = this.eulerOrder;
- object.scale.copy( this.scale );
- object.renderDepth = this.renderDepth;
- object.rotationAutoUpdate = this.rotationAutoUpdate;
- object.matrix.copy( this.matrix );
- object.matrixWorld.copy( this.matrixWorld );
- object.matrixRotationWorld.copy( this.matrixRotationWorld );
- object.matrixAutoUpdate = this.matrixAutoUpdate;
- object.matrixWorldNeedsUpdate = this.matrixWorldNeedsUpdate;
- object.quaternion.copy( this.quaternion );
- object.useQuaternion = this.useQuaternion;
- object.visible = this.visible;
- object.castShadow = this.castShadow;
- object.receiveShadow = this.receiveShadow;
- object.frustumCulled = this.frustumCulled;
- for ( var i = 0; i < this.children.length; i ++ ) {
- var child = this.children[ i ];
- object.add( child.clone() );
- }
- return object;
- }
- };
- THREE.Object3D.defaultEulerOrder = 'XYZ',
- THREE.Object3DIdCount = 0;
|