@@ -71,7 +71,11 @@ function animate() {
// PRNG
var seed = 1;
+
function random() {
- var x = Math.sin(seed++) * 10000;
- return x - Math.floor(x);
+ var x = Math.sin( seed ++ ) * 10000;
+ return x - Math.floor( x );
}