From 1b27e59be80a70d2169a8ff896925d2ca3b10535 Mon Sep 17 00:00:00 2001 From: jonasengelmann <40031476+jonasengelmann@users.noreply.github.com> Date: Wed, 29 Jun 2022 19:47:03 +0200 Subject: [PATCH] added Euclidean modulo helper function --- src/openseadragon.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/openseadragon.js b/src/openseadragon.js index cc2373ae..6a3d734f 100644 --- a/src/openseadragon.js +++ b/src/openseadragon.js @@ -1635,7 +1635,7 @@ function OpenSeadragon( options ){ /** * Compute the modulo of a number but makes sure to always return * a positive value. - * @param {Number} number the number to computes the modulo of + * @param {Number} number the number to compute the modulo of * @param {Number} modulo the modulo * @returns {Number} the result of the modulo of number */ @@ -1647,6 +1647,16 @@ function OpenSeadragon( options ){ return result; }, + /** + * Computes Euclidean modulo of m % n. + * @param {Number} number the number to compute the modulo of + * @param {Number} modulo the modulo + * @returns {Number} the result of the modulo of number + */ + euclideanModulo: function(number, modulo) { + return ( ( number % modulo ) + modulo ) % modulo; + }, + /** * Determines if a point is within the bounding rectangle of the given element (hit-test). * @function