CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PrismarineJS

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: PrismarineJS/mineflayer
Path: blob/master/lib/math.js
Views: 789
1
exports.clamp = function clamp (min, x, max) {
2
return Math.max(min, Math.min(x, max))
3
}
4
5
exports.euclideanMod = function euclideanMod (numerator, denominator) {
6
const result = numerator % denominator
7
return result < 0 ? result + denominator : result
8
}
9
10