1 Star 0 Fork 2

liyong/CAM

forked from zzthfut/CAM 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Test_topoSlicer.py 672 Bytes
一键复制 编辑 原始数据 按行查看 历史
zzthfut 提交于 2023-08-08 21:17 . 8-6
import time
import vtk
from SliceAlgo import slice_combine, slice_topo
from StlModel import StlModel
stlModel = StlModel()
vtkreader = vtk.vtkSTLReader()
vtkreader.SetFileName("/home/zzt/Downloads/leng1.STL")
stlModel.extractFromVtkStlReader(vtkreader)
layerThks = [1, 0.5, 0.1, 0.05]
for layerThk in layerThks:
print("layerThk:", layerThk)
start = time.perf_counter()
layers1 = slice_topo(stlModel, layerThk)
end = time.perf_counter()
print("slice_topo: %f seconds" % (end - start))
start = time.perf_counter()
layers2 = slice_combine(stlModel, layerThk)
end = time.perf_counter()
print("slice_combine: %f seconds" % (end - start))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/JushoaJob/cam.git
git@gitee.com:JushoaJob/cam.git
JushoaJob
cam
CAM
master

搜索帮助