cura-engine為開源3D打印軟件cura的核心引擎代碼,詳細(xì)介紹參看github主頁?,F(xiàn)在學(xué)習(xí)的是一個(gè)簡單版的https://github.com/repetier/CuraEngine,最新版https://github.com/Ultimaker/CuraEngine添加了很多功能,尤其通信部分有點(diǎn)難懂。本系列文章主要是為了保存本人閱讀記憶,一面吃過就忘,所以完全按照閱讀順序編寫,故稍有凌亂。下面直接進(jìn)入學(xué)習(xí)。
首先看fffProcessor.h中的讀取STL文件部分:
函數(shù)ProsessFile:功能:STL文件讀取prepareModel、生成切片數(shù)據(jù)processSliceData、生成Gcode writeGcode。(log函數(shù)現(xiàn)在濾去,單獨(dú)研究)
函數(shù)prepareModel:功能:STL文件讀取、優(yōu)化STL文件、生成LayerParts。涉及到的類:class SimpleModel、class SimpleVolume、class OptimizedModel、cura class Slicer、cura class SupportStorage。
文件讀取的實(shí)現(xiàn):