|
@@ -397,13 +397,6 @@ THREE.Quaternion.prototype = {
|
|
|
|
|
|
},
|
|
},
|
|
|
|
|
|
- multiplyVector3: function ( vector ) {
|
|
|
|
-
|
|
|
|
- console.warn( 'THREE.Quaternion: .multiplyVector3() has been removed. Use is now vector.applyQuaternion( quaternion ) instead.' );
|
|
|
|
- return vector.applyQuaternion( this );
|
|
|
|
-
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
slerp: function ( qb, t ) {
|
|
slerp: function ( qb, t ) {
|
|
|
|
|
|
if ( t === 0 ) return this;
|
|
if ( t === 0 ) return this;
|
|
@@ -588,4 +581,3 @@ Object.assign( THREE.Quaternion, {
|
|
}
|
|
}
|
|
|
|
|
|
} );
|
|
} );
|
|
-
|
|
|