When reading a file, the result is converted into a common data model that provides format-neutral data representation and access API.
Manufacturing Toolkit can import STEP (.stp/.step) and native MTK (.mtk) format models.
See also:
ModelData::ModelReader is the primary class for reading files. The usage is simple: one just has to call a single function with the path to the file that should be read and the target ModelData::Model instance.
The data model object will be populated with the contents imported from the file being read. The model is not cleaned up before conversion, therefore multiple files can be accumulated in the same model.
Reader parameters are controlled by ModelData::ModelReaderParameters class and can be set using ModelData::ModelReader::SetParameters() method.
Parameter | Default value |
---|---|
ModelData::ModelReaderParameters::ReadPMI() | false |
ModelData::ModelReaderParameters::ReadDrawing() | false |
To export a model, use the Save()
method provided by the ModelData::Model class. This method writes the contents of the model to a file in the specified format. Supported formats are defined in the ModelData::Model::FileFormatType enum.
.mtkweb