mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-24 22:26:10 +03:00
removed redundant EuclideanModulo function
This commit is contained in:
parent
ddd4a05e5e
commit
9bce0e696c
@ -1634,7 +1634,7 @@ function OpenSeadragon( options ){
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Compute the modulo of a number but makes sure to always return
|
* Compute the modulo of a number but makes sure to always return
|
||||||
* a positive value.
|
* a positive value (also known as Euclidean modulo).
|
||||||
* @param {Number} number the number to compute the modulo of
|
* @param {Number} number the number to compute the modulo of
|
||||||
* @param {Number} modulo the modulo
|
* @param {Number} modulo the modulo
|
||||||
* @returns {Number} the result of the modulo of number
|
* @returns {Number} the result of the modulo of number
|
||||||
@ -1647,15 +1647,6 @@ function OpenSeadragon( options ){
|
|||||||
return result;
|
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).
|
* Determines if a point is within the bounding rectangle of the given element (hit-test).
|
||||||
|
Loading…
Reference in New Issue
Block a user