123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- this.animationUpdate = function(time, duration){
- //console.log("DO on animation update")
- }
- this.translateBy = function(translation, duration){
- this.startTranslationSIM = this.position || new THREE.Vector3();
- var deltaTranslation = this.translationFromValue( translation );
- this.stopTranslationSIM = new THREE.Vector3().addVectors ( this.startTranslationSIM, deltaTranslation);
- if(duration > 0) {
- this.animationDuration = duration;
- this.animationUpdate = function(time, duration) {
- this.position = new THREE.Vector3().lerpVectors(this.startTranslationSIM, this.stopTranslationSIM,
- time >= duration ? 1 : time / duration)
- }
- this.animationPlay(0, duration);
- }
- else {
- this.position = this.stopTranslationSIM;
- } //@ sourceURL=node3.animation.translateBy.vwf
- }
- this.translateTo = function(translation, duration){
- this.startTranslationSIM = this.position || new THREE.Vector3();
- this.stopTranslationSIM = this.translationFromValue( translation );
- if(duration > 0) {
- this.animationDuration = duration;
- this.animationUpdate = function(time, duration) {
- this.position = new THREE.Vector3().lerpVectors(this.startTranslationSIM, this.stopTranslationSIM,
- duration == 0 ? duration : time / duration)
- }
- this.animationPlay(0, duration);
- }
- else {
- this.position = this.stopTranslationSIM;
- } //@ sourceURL=node3.animation.translateTo.vwf
- }
- this.rotateBy = function(rotation, duration, cb, frame) {
- let rotationValue = this.translationFromValue(rotation);
- let deltaQuaternion = (new THREE.Quaternion()).setFromEuler(new THREE.Euler(
- (THREE.Math.degToRad(rotationValue.x)),
- (THREE.Math.degToRad(rotationValue.y)),
- (THREE.Math.degToRad(rotationValue.z)), 'XYZ'
- ));
- this.quaterniateBy( deltaQuaternion, duration, cb, frame ); //@ sourceURL=node3.animation.rotateBy.vwf
- }
- this.rotateTo = function(rotation, duration){
- let rotationValue = this.translationFromValue(rotation);
- let stopQuaternion = (new THREE.Quaternion()).setFromEuler(new THREE.Euler(
- (THREE.Math.degToRad(rotationValue.x)),
- (THREE.Math.degToRad(rotationValue.y)),
- (THREE.Math.degToRad(rotationValue.z)), 'XYZ'
- ));
- this.quaterniateTo( stopQuaternion, duration ); //@ sourceURL=node3.animation.rotateTo.vwf
- }
- this.quaterniateBy = function(quaternion, duration, cb, frame) {
- this.startQuaternionSIM = (new THREE.Quaternion()).setFromEuler(new THREE.Euler(
- (THREE.Math.degToRad(this.rotation.x)),
- (THREE.Math.degToRad(this.rotation.y)),
- (THREE.Math.degToRad(this.rotation.z)), 'XYZ'
- ));
- var deltaQuaternion = (new THREE.Quaternion).copy(quaternion);
- if ( ! frame || frame == "rotated" ) {
- this.stopQuaternionSIM = (new THREE.Quaternion()).multiplyQuaternions(deltaQuaternion, this.startQuaternionSIM);
- } else if ( frame == "scaled" ) {
- this.stopQuaternionSIM = (new THREE.Quaternion()).multiplyQuaternions(this.startQuaternionSIM, deltaQuaternion);
- }
- //this.stopQuaternionSIM = (new THREE.Quaternion()).copy(quaternion);
- if(duration > 0) {
- this.animationDuration = duration;
- this.animationUpdate = function(time, duration) {
- let q = new THREE.Quaternion();
- let e = new THREE.Euler();
- let step = (time >= duration) ? 1 : time / duration;
- THREE.Quaternion.slerp(this.startQuaternionSIM, this.stopQuaternionSIM, q, step || 0);
- let interp = e.setFromQuaternion(q, 'XYZ');
- this.rotation = [THREE.Math.radToDeg(interp.x), THREE.Math.radToDeg(interp.y), THREE.Math.radToDeg(interp.z)];
- }
- this.animationPlay(0, duration, cb);
- }
- else {
- let eE = new THREE.Euler();
- let eQ = (new THREE.Quaternion).copy(this.stopQuaternionSIM);
- let interpE = eE.setFromQuaternion(eQ, 'XYZ');
- this.rotation = [THREE.Math.radToDeg(interpE.x),THREE.Math.radToDeg(interpE.y), THREE.Math.radToDeg(interpE.z)];
- //this.quaternion = this.stopQuaternionSIM;
- } //@ sourceURL=node3.animation.quaterniateBy.vwf
- }
-
- this.quaterniateTo = function(quaternion, duration) {
- this.startQuaternionSIM = (new THREE.Quaternion()).setFromEuler(new THREE.Euler(
- (THREE.Math.degToRad(this.rotation.x)),
- (THREE.Math.degToRad(this.rotation.y)),
- (THREE.Math.degToRad(this.rotation.z)), 'XYZ'
- ));
- this.stopQuaternionSIM = (new THREE.Quaternion).copy(quaternion);
- if(duration > 0) {
- this.animationDuration = duration;
- this.animationUpdate = function(time, duration) {
- let q = new THREE.Quaternion();
- let e = new THREE.Euler();
- let step = (time >= duration) ? 1 : time / duration;
- THREE.Quaternion.slerp(this.startQuaternionSIM, this.stopQuaternionSIM, q, step || 0);
- let interp = e.setFromQuaternion(q, 'XYZ');
- this.rotation = [THREE.Math.radToDeg(interp.x), THREE.Math.radToDeg(interp.y), THREE.Math.radToDeg(interp.z)];
- }
- this.animationPlay(0, duration);
- }
- else {
- let eE = new THREE.Euler();
- let eQ = (new THREE.Quaternion).copy(this.stopQuaternionSIM);
- let interpE = eE.setFromQuaternion(eQ, 'XYZ');
- this.rotation = [THREE.Math.radToDeg(interpE.x),THREE.Math.radToDeg(interpE.y), THREE.Math.radToDeg(interpE.z)];
- //this.quaternion = this.stopQuaternionSIM;
- } //@ sourceURL=node3.animation.quaterniateTo.vwf
- }
- this.scaleBy = function(scale, duration){
- this.startScaleSIM = this.scale || goog.vec.Vec3.createFromValues( 1, 1, 1 );
- var deltaScale = this.translationFromValue( scale );
- this.stopScaleSIM = goog.vec.Vec3.createFromValues(
- this.startScaleSIM[0] * deltaScale[0],
- this.startScaleSIM[1] * deltaScale[1],
- this.startScaleSIM[2] * deltaScale[2]
- );
- if(duration > 0) {
- this.animationDuration = duration;
- this.animationUpdate = function(time, duration) {
- this.scale = goog.vec.Vec3.lerp( // TODO: should be geometric interpolation
- this.startScaleSIM, this.stopScaleSIM,
- duration == 0 ? duration : time / duration,
- goog.vec.Vec3.create()
- );
- }
- this.animationPlay(0, duration);
- }
- else {
- this.scale = this.stopScaleSIM;
- } //@ sourceURL=node3.animation.scaleBy.vwf
- }
- this.scaleTo = function(scale, duration){
- this.startScaleSIM = this.scale || goog.vec.Vec3.createFromValues( 1, 1, 1 );
- this.stopScaleSIM = this.translationFromValue( scale );
- if(duration > 0) {
- this.animationDuration = duration;
- this.animationUpdate = function(time, duration) {
- this.scale = goog.vec.Vec3.lerp( // TODO: should be geometric interpolation
- this.startScaleSIM, this.stopScaleSIM,
- duration == 0 ? duration : time / duration,
- goog.vec.Vec3.create()
- );
- }
- this.animationPlay(0, duration);
- }
- else {
- this.scale = this.stopScaleSIM;
- }//@ sourceURL=node3.animation.scaleTo.vwf
- }
- this.transformBy = function(transform, duration){
- var startTransform = this.transform || goog.vec.Vec3.create();
- var deltaTransform = this.transformFromValue( transform );
- // Left multiply by the delta
- var stopTransform = goog.vec.Mat4.multMat( deltaTransform, startTransform, goog.vec.Mat4.createFloat32() );
- this.transformTo( stopTransform, duration ); //@ sourceURL=node3.animation.transformBy.vwf
- }
- this.transformTo = function(transform, duration){
- var stopTransform = this.transformFromValue( transform ) || goog.vec.Mat4.createIdentity();
- if ( duration > 0 ) {
- // Calculate the start and stop translations
- this.startTranslationSIM = this.translation || goog.vec.Vec3.create();
- this.stopTranslationSIM = goog.vec.Vec3.create();
- goog.vec.Mat4.getColumn( stopTransform, 3, this.stopTranslationSIM );
- // Calculate the start and stop quaternion and scale
- this.startScaleSIM = this.scale || goog.vec.Vec3.createFromValues( 1, 1, 1 );
- this.stopScaleSIM = goog.vec.Vec3.create();
- this.startQuaternionSIM = this.quaternion || goog.vec.Quaternion.createFromValues( 0, 0, 0, 1 );
- this.stopQuaternionSIM = goog.vec.Quaternion.fromRotationMatrix4(
- this.unscaledTransform( stopTransform || goog.vec.Mat4.createIdentity(), this.stopScaleSIM, goog.vec.Mat4.create() ),
- goog.vec.Quaternion.create()
- );
- this.animationDuration = duration;
- // Call the appropriate functions to do the translation and quaterniation (that is totally a word)
- this.animationUpdate = function(time, duration) {
- this.translation = goog.vec.Vec3.lerp(
- this.startTranslationSIM, this.stopTranslationSIM,
- duration == 0 ? duration : time / duration,
- goog.vec.Vec3.create()
- );
- this.quaternion = goog.vec.Quaternion.slerp(
- this.startQuaternionSIM, this.stopQuaternionSIM,
- duration == 0 ? duration : time / duration,
- goog.vec.Quaternion.create()
- );
- this.scale = goog.vec.Vec3.lerp( // TODO: should be geometric interpolation
- this.startScaleSIM, this.stopScaleSIM,
- duration == 0 ? duration : time / duration,
- goog.vec.Vec3.create()
- );
- }
- this.animationPlay(0, duration);
- }
- else {
- this.transform = stopTransform;
- } //@ sourceURL=node3.animation.transformTo.vwf
- }
- this.worldTransformBy = function(transform, duration){
- var startWorldTransform = this.worldTransform || goog.vec.Mat4.create();
- var deltaTransform = this.transformFromValue( transform );
- // Left multiply by the delta
- var stopWorldTransform = goog.vec.Mat4.multMat( deltaTransform, startWorldTransform,
- goog.vec.Mat4.createFloat32() );
- this.worldTransformTo( stopWorldTransform, duration ) //@ sourceURL=node3.animation.worldTransformBy.vwf
- }
- this.worldTransformTo = function(transform, duration){
- var stopWorldTransform = this.transformFromValue( transform );
- var stopTransform;
- if ( this.parent && this.parent.worldTransform ) {
- // We need to find the local transform that will bring about the desired world transform
- // The math for this looks like -
- // (new worldTransform) = (parentWorldTransform) * (transform)
- // So, if we left multiply both sides by the inverse of the parentWorldTransform...
- // inv(parentWorldTransform) * (new worldTransform) = (transform)
- // Find the inverse parent worldTransform
- var inverseParentWorldTransform = goog.vec.Mat4.createFloat32();
- if ( goog.vec.Mat4.invert( this.parent.worldTransform, inverseParentWorldTransform ) ) {
- // Left multiply the new worldTransform by the inverse parent worldTransform
- stopTransform = goog.vec.Mat4.multMat( inverseParentWorldTransform, stopWorldTransform,
- goog.vec.Mat4.createFloat32() );
- }
- else {
- stopTransform = goog.vec.Mat4.createIdentity();
- this.logger.error( "Parent '" + this.parent.id + "' transform matrix is not invertible: " +
- this.parent.transform );
- }
- }
- else {
- stopTransform = stopWorldTransform;
- }
- this.transformTo( stopTransform, duration ); //@ sourceURL=node3.animation.worldTransformTo.vwf
- }
|