3mf Importer - 1st installment

This commit is contained in:
Enrico Turri
2018-01-30 09:27:10 +01:00
parent 893201d3d9
commit 475f892413
10 changed files with 1058 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
#ifndef slic3r_Format_3mf_hpp_
#define slic3r_Format_3mf_hpp_
namespace Slic3r {
class Model;
// Load an 3mf file into a provided model.
extern bool load_3mf(const char* path, Model* model, const char* object_name = nullptr);
}; // namespace Slic3r
#endif /* slic3r_Format_3mf_hpp_ */