上传者: 42128988
|
上传时间: 2022-01-06 13:27:22
|
文件大小: 5.91MB
|
文件类型: -
节点
使用Node.js解析STL文件,并获取体积,重量,边界框和质心。
例子
const NodeStl = require ( "node-stl" ) ;
var stl = NodeStl ( __dirname + '/myCool.stl' , { density : 1.04 } ) ;
console . log ( stl . volume + 'cm^3' ) ; // 21cm^3
console . log ( stl . weight + 'gm' ) ; // 1gm
console . log ( stl . boundingBox , '(mm)' ) ; // [60,45,50] (mm)
console . log ( stl . area , '(m)' ) ; // 91.26 (m)
console