simplex noise comparison

Benchmark created on


Preparation HTML

<script src="https://raw.github.com/mrdoob/three.js/master/examples/js/SimplexNoise.js"></script>
<script>ThreeSimplexNoise = SimplexNoise;</script>
<script src="https://raw.github.com/jwagner/simplex-noise.js/master/simplex-noise.js"></script>

Setup

simplex = new SimplexNoise();
    threeSimplex = new ThreeSimplexNoise();

Test runner

Ready to run.

Testing in
TestOps/sec
simplex-noise
a = 0;
for(var x = 0; x < 32; x++){
  for(var y = 0; y < 32; y++){
    for(var z = 0; z < 32; z++){
      a += simplex.noise3D(x/8, y/8, z/8);
    }
  }
}
ready
threejs-noise
b = 0;
for(var x = 0; x < 32; x++){
  for(var y = 0; y < 32; y++){
    for(var z = 0; z < 32; z++){
      b += threeSimplex.noise3d(x/8, y/8, z/8);
    }
  }
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.