Files
d3-spring-model/src/jiggle.js
Pitchaya Boonsarngsuk 5d7b7bf020 Fix jiggle
2018-02-05 10:53:12 +00:00

11 lines
194 B
JavaScript

/**
* @return {number} a very small non-zero random number.
*/
export default function() {
let rand;
do {
rand = (Math.random() - 0.5) * 1e-6;
} while (rand === 0);
return rand;
}