@mapbox/react-map-gl
Version:
A React wrapper for MapboxGL-js and overlay API.
41 lines (33 loc) • 849 B
JavaScript
var EPSILON = 1e-9; // Returns true if value is either an array or a typed array
function isArray(value) {
return Array.isArray(value) || ArrayBuffer.isView(value);
}
export function equals(a, b) {
if (a === b) {
return true;
}
if (isArray(a) && isArray(b)) {
if (a.length !== b.length) {
return false;
}
for (var i = 0; i < a.length; ++i) {
if (!equals(a[i], b[i])) {
return false;
}
}
return true;
}
return Math.abs(a - b) <= EPSILON;
}
export function clamp(value, min, max) {
return Math.max(min, Math.min(max, value));
} // Interpolate between two numbers or two arrays
export function lerp(a, b, t) {
if (isArray(a)) {
return a.map(function (ai, i) {
return lerp(ai, b[i], t);
});
}
return t * b + (1 - t) * a;
}
//# sourceMappingURL=math-utils.js.map