All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.interpolate.js Maven / Gradle / Ivy

There is a newer version: 10.17.0
Show newest version
import { mix } from "./mix";
import { noopReturn } from "./noop";
import { defaultOffset, fillOffset } from "./offset";
import { progress } from "./progress";
import { getEasingForSegment } from "./easing";
import { clamp } from "./clamp";
export function interpolate(output, input = defaultOffset(output.length), easing = noopReturn) {
    const length = output.length;
    /**
     * If the input length is lower than the output we
     * fill the input to match. This currently assumes the input
     * is an animation progress value so is a good candidate for
     * moving outside the function.
     */
    const remainder = length - input.length;
    remainder > 0 && fillOffset(input, remainder);
    return (t) => {
        let i = 0;
        for (; i < length - 2; i++) {
            if (t < input[i + 1])
                break;
        }
        let progressInRange = clamp(0, 1, progress(input[i], input[i + 1], t));
        const segmentEasing = getEasingForSegment(easing, i);
        progressInRange = segmentEasing(progressInRange);
        return mix(output[i], output[i + 1], progressInRange);
    };
}
//# sourceMappingURL=interpolate.js.map




© 2015 - 2025 Weber Informatics LLC | Privacy Policy