|
@@ -7,16 +7,13 @@ import { Quaternion } from '../Quaternion';
|
|
|
* @author tschw
|
|
|
*/
|
|
|
|
|
|
-function QuaternionLinearInterpolant(
|
|
|
- parameterPositions, sampleValues, sampleSize, resultBuffer ) {
|
|
|
+function QuaternionLinearInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {
|
|
|
|
|
|
- Interpolant.call(
|
|
|
- this, parameterPositions, sampleValues, sampleSize, resultBuffer );
|
|
|
+ Interpolant.call( this, parameterPositions, sampleValues, sampleSize, resultBuffer );
|
|
|
|
|
|
}
|
|
|
|
|
|
-QuaternionLinearInterpolant.prototype =
|
|
|
- Object.assign( Object.create( Interpolant.prototype ), {
|
|
|
+QuaternionLinearInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), {
|
|
|
|
|
|
constructor: QuaternionLinearInterpolant,
|
|
|
|