I am using three.js to create dynamic geometries using this tutorial.
I tried replacing the following two lines of code
var value = noise.perlin2(x, y);
var value = noise.perlin3(x, y, z);
with this,
var value = perlin.get(x,y)
But it would be great if I could add a z property too