6.1.1 • Published 4 months ago

meshprop v6.1.1

Weekly downloads
39
License
MIT
Repository
github
Last release
4 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

import { meshprop } from '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
  }
}
6.1.0

4 months ago

6.0.1

4 months ago

6.0.0

4 months ago

6.1.1

4 months ago

5.0.2

2 years ago

5.0.1

2 years ago

5.0.0

2 years ago

4.0.1

3 years ago

3.0.2

3 years ago

4.0.0

3 years ago

3.0.1

4 years ago

3.0.0

4 years ago

2.4.9

5 years ago

2.4.6

6 years ago

2.4.5

6 years ago

2.4.4

6 years ago

2.4.3

6 years ago

2.4.2

6 years ago

2.4.1

7 years ago

2.4.0

8 years ago

2.3.0

8 years ago

2.1.0

8 years ago

2.0.0

8 years ago

1.1.0

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago