All Projects → maxogden → Voxel Mesh

maxogden / Voxel Mesh

generate a three.js mesh from voxel data

Programming Languages

javascript
184084 projects - #8 most used programming language

voxel-mesh

generate a three.js mesh from voxel data. extracted from some code by @mikolalysenko

installation

it is recommended that you use browserify to use this module

npm install voxel-mesh
npm install browserify -g
browserify -r voxel-mesh > voxel-mesh-browserified.js

usage

var Mesh = require('voxel-mesh')
var voxelData = require('voxel').generator['Hilly Terrain']
var mesh = new Mesh(voxelData)
mesh.createSurfaceMesh()
threeJSScene.add(mesh)

new Mesh(voxelData, meshingAlgorithm, scaleFactor)

voxelData and meshingAlgorithm are required, scaleFactor defaults to new Three.Vector3(10, 10, 10).

Mesh.prototype.createSurfaceMesh(material)

returns the generated surface mesh. material defaults to new THREE.MeshNormalMaterial(). after calling this method your mesh will also have .surfaceMesh populated with the new mesh

Mesh.prototype.createWireMesh(hexColor)

returns the generated wire mesh. hexColor defaults to 0xffffff. after calling this method your mesh will also have .wireMesh populated with the new mesh

Mesh.prototype.addToScene(scene)

convenience method for adding the currently generated meshes (either surfaceMesh or wireMesh) to a three.js scene instance

Mesh.prototype.setPosition(x, y, z)

convenience method for setting the position of the currently generated meshes (either surfaceMesh or wireMesh)

license

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].