mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-11-23 05:57:57 +01:00
12 lines
399 B
JavaScript
Executable File
12 lines
399 B
JavaScript
Executable File
// Park-Miller-Carta Pseudo-Random Number Generator
|
|
// https://github.com/pnitsch/BitmapData.js/blob/master/js/BitmapData.js
|
|
|
|
var PRNG = function () {
|
|
|
|
this.seed = 1;
|
|
this.next = function() { return (this.gen() / 2147483647); };
|
|
this.nextRange = function(min, max) { return min + ((max - min) * this.next()) };
|
|
this.gen = function() { return this.seed = (this.seed * 16807) % 2147483647; };
|
|
|
|
};
|