5.0.2 • Published 10 months ago

meshprop v5.0.2

Weekly downloads
39
License
MIT
Repository
github
Last release
10 months ago

Meshprop Release Workflow

Get 3D mesh properties

This NPM-module will calculate the volume, area, and boundingbox of a 3d model. The algorithm is written in C++. And is using internaly the VCG library http://vcg.isti.cnr.it/vcglib/index.html

Supported file formats

Supported by VCG library: PLY, STL, OFF, OBJ, 3DS, COLLADA, PTX, V3D, PTS, APTS, XYZ, GTS, TRI, ASC, X3D, X3DV, VRML, ALN

Works most reliable with STL and PLY, other formats might experience problems with parsing geometries.

Usage

var meshprop = require('meshprop');

meshprop.parse('path-to-my-mesh.stl', function(err, props) {
  console.log(props);
});

Example Result

{
  "volume" : 97177.8,
  "area" : 15730.4,
  "bbox" : {
    "x" : 71.054,
    "y" : 49.728,
    "z" : 95.002
  }
}
5.0.2

10 months ago

5.0.1

10 months ago

5.0.0

10 months ago

4.0.1

2 years ago

3.0.2

2 years ago

4.0.0

2 years ago

3.0.1

3 years ago

3.0.0

3 years ago

2.4.9

4 years ago

2.4.6

5 years ago

2.4.5

5 years ago

2.4.4

5 years ago

2.4.3

5 years ago

2.4.2

5 years ago

2.4.1

6 years ago

2.4.0

7 years ago

2.3.0

7 years ago

2.1.0

7 years ago

2.0.0

7 years ago

1.1.0

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago