Files
infocom-systems-design/node_modules/roughjs/bin/math.js
2025-10-03 22:27:28 +03:00

17 lines
364 B
JavaScript

export function randomSeed() {
return Math.floor(Math.random() * 2 ** 31);
}
export class Random {
constructor(seed) {
this.seed = seed;
}
next() {
if (this.seed) {
return ((2 ** 31 - 1) & (this.seed = Math.imul(48271, this.seed))) / 2 ** 31;
}
else {
return Math.random();
}
}
}