Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
bokeh / server / static / js / lib / models / transforms / linear_interpolator.js
Size: Mime:
import { find_last_index } from "../../core/util/array";
import { Interpolator } from "./interpolator";
export class LinearInterpolator extends Interpolator {
    constructor(attrs) {
        super(attrs);
    }
    compute(x) {
        this.sort(false);
        if (this.clip) {
            if (x < this._x_sorted[0] || x > this._x_sorted[this._x_sorted.length - 1])
                return NaN;
        }
        else {
            if (x < this._x_sorted[0])
                return this._y_sorted[0];
            if (x > this._x_sorted[this._x_sorted.length - 1])
                return this._y_sorted[this._y_sorted.length - 1];
        }
        if (x == this._x_sorted[0])
            return this._y_sorted[0];
        const ind = find_last_index(this._x_sorted, num => num < x);
        const x1 = this._x_sorted[ind];
        const x2 = this._x_sorted[ind + 1];
        const y1 = this._y_sorted[ind];
        const y2 = this._y_sorted[ind + 1];
        return y1 + (((x - x1) / (x2 - x1)) * (y2 - y1));
    }
}
LinearInterpolator.__name__ = "LinearInterpolator";
//# sourceMappingURL=linear_interpolator.js.map