|
@@ -12,8 +12,7 @@ import { WrapAroundEnding, ZeroSlopeEnding } from '../../constants';
|
|
* @author tschw
|
|
* @author tschw
|
|
*/
|
|
*/
|
|
|
|
|
|
-function CubicInterpolant(
|
|
|
|
- parameterPositions, sampleValues, sampleSize, resultBuffer ) {
|
|
|
|
|
|
+function CubicInterpolant( parameterPositions, sampleValues, sampleSize, resultBuffer ) {
|
|
|
|
|
|
Interpolant.call(
|
|
Interpolant.call(
|
|
this, parameterPositions, sampleValues, sampleSize, resultBuffer );
|
|
this, parameterPositions, sampleValues, sampleSize, resultBuffer );
|
|
@@ -25,8 +24,7 @@ function CubicInterpolant(
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-CubicInterpolant.prototype =
|
|
|
|
- Object.assign( Object.create( Interpolant.prototype ), {
|
|
|
|
|
|
+CubicInterpolant.prototype = Object.assign( Object.create( Interpolant.prototype ), {
|
|
|
|
|
|
constructor: CubicInterpolant,
|
|
constructor: CubicInterpolant,
|
|
|
|
|