Skip to content

Instantly share code, notes, and snippets.

@max-mapper
Forked from hughsk/continuous-perlin.js
Last active December 21, 2015 02:49
Show Gist options
  • Save max-mapper/6238108 to your computer and use it in GitHub Desktop.
Save max-mapper/6238108 to your computer and use it in GitHub Desktop.
var perlin = require('perlin').noise.perlin3
var fill = require('ndarray-fill')
var continuous = require('ndarray-continuous')
var stl = require('ndarray-stl')
var zeros = require('zeros')
var scale = 0.075
var threshold = 0.125
var field = continuous({
shape: [32, 32, 32],
getter: function(position, done) {
var shape = this.shape
var array = zeros(shape)
fill(array, function(x, y, z) {
var noise = perlin(
(position[0] * shape[0] + x) * scale,
(position[1] * shape[1] + y) * scale,
(position[2] * shape[2] + z) * scale
)
return (noise > threshold) ? 0 : 1
})
done(null, array)
}
})
field.chunk([0, 0, 0], function(err, chunk) {
console.log(stl(chunk))
})
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment