/** * Componentwise constrains given nD vector `a` to the closed interval defined * by vectors `b` and `c`. Multi-method. * * @param o - output vector * @param a - input vector * @param b - input vector * @param c - input vector */ export declare const clamp: import("./api.js").MultiVecOpVVV; /** * Componentwise constrains given 2D vector `a` to the closed interval defined * by vectors `b` and `c`. * * @param o - output vector * @param a - input vector * @param b - input vector * @param c - input vector */ export declare const clamp2: import("./api.js").VecOpVVV; /** * Componentwise constrains given 3D vector `a` to the closed interval defined * by vectors `b` and `c`. * * @param o - output vector * @param a - input vector * @param b - input vector * @param c - input vector */ export declare const clamp3: import("./api.js").VecOpVVV; /** * Componentwise constrains given 4D vector `a` to the closed interval defined * by vectors `b` and `c`. * * @param o - output vector * @param a - input vector * @param b - input vector * @param c - input vector */ export declare const clamp4: import("./api.js").VecOpVVV; //# sourceMappingURL=clamp.d.ts.map