@xhymf1992/easy-nodejs
v1.0.0
Published
package for nodejs
Downloads
2
Readme
easy-nodejs
介绍
nodejs
常用接口封装
软件架构
安装教程
yarn add @xhymf1992/esay-nodejs
使用说明
读取STL的三角网并生成等高线
/**
* 读取stl的三角网,并按指定高程间隔生成等高线
*/
import * as EasyNodejs from "easy-nodejs";
// stl 文件路径
let stlPath = "test.stl";
// 读取stl文件的内容
let stlContent = EasyNodejs.STL.read(stlPath);
console.log(stlContent);
// 构建Tin类
let tin = new EasyNodejs.Tin({triangles: stlContent.triangles});
// Tin类导出等高线
let contour = tin.generateContour(5);
console.log(contour);