Increase the probablity of the text being readable.

This commit is contained in:
2019-03-14 15:54:02 +01:00
parent b13b38477a
commit 2ea06db745

View File

@@ -265,9 +265,9 @@ function animate() {
if (animation.steps === 0) {
animation.steps = Math.floor(Math.random() * 60) + 30;
animation.x[0] = 4 * Math.random() * Math.PI;
animation.y[0] = 4 * Math.random() * Math.PI;
animation.z[0] = 4 * Math.random() * Math.PI;
animation.x[0] = (4 * Math.random() - 2) * Math.PI;
animation.y[0] = (4 * Math.random() - 2) * Math.PI;
animation.z[0] = (4 * Math.random() - 2) * Math.PI;
}
animation.steps--;