mesh-mass
v1.0.0
Published
Calculate mass properties of a mesh
Downloads
6
Readme
mesh-mass
Calculates mesh mass and area. Note that the volume does not make sense if the mesh does not represent a solid.
Implementation comes from this paper
Usage
var mass = require("./index");
var bunny = require("bunny");
var massProperties = mass(bunny.cells, bunny.positions);
console.log(massProperties);
require("mesh-mass")(cells, positions)
Returns an object with properties area
and volume
.
Contributing
See stackgl/contributing for details.
License
MIT. See LICENSE.md for details.